monitor_touch event

Occurs every time a player right clicks on an advanced monitor.

monitor_touch
Event
Returns
  • name : string The side or network name of the Advanced Monitor that got touched
  • x : number The X position of the touch
  • y : number The Y position of the touch

Source CC:Tweaked

 Note: This event is only called on Advanced Monitors.

ExamplePrint touched coordinates
Prints the touched coordinates every time a player touches a connected Advanced Monitor.
Code
<nowiki>
while true do
  local event, peripheral_name, x, y = os.pullEvent("monitor_touch")
  print("A monitor has been pressed at " .. x .. ", " .. y)
end
    </nowiki>
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.