Posted 01 May 2013 - 01:04 AM
I wrote a simple program to try to get started with advanced monitors but I'm not getting any monitor_touch events.
I'm getting key and mouseclick events on the computer but no monitor_touch events when I try clicking on the monitor. Does anyone have any idea whats wrong?
Spoiler
monitor = peripheral.wrap("right")
monitor.write("Hello World!")
while true do
local event, p1, p2, p3 = os.pullEvent()
print (event..": "..tostring(p1)..", "..tostring(p2)..", "..tostring(p3))
end
I'm getting key and mouseclick events on the computer but no monitor_touch events when I try clicking on the monitor. Does anyone have any idea whats wrong?