monitor touch (event)
From ComputerCraft Wiki
Examples
![]() | |
Print the side of the monitor and the co-ordinates of every mouse click we receive a monitor_touch event. | |
Code |
while true do event, side, xPos, yPos = os.pullEvent("monitor_touch") print(event .. " => Side: " .. tostring(side) .. ", " .. "X: " .. tostring(xPos) .. ", " .. "Y: " .. tostring(yPos)) end |
Output | The side of the advanced monitor, followed by the X and Y position of the event. |