Difference between revisions of "Mouse click (event)"
From ComputerCraft Wiki
Bomb Bloke (Talk | contribs) m |
MKlegoman357 (Talk | contribs) m |
||
Line 2: | Line 2: | ||
{{Event | {{Event | ||
|name=mouse_click | |name=mouse_click | ||
− | |desc=Fired when the terminal of an advanced system is | + | |desc=Fired when the terminal of an advanced system is pressed with a mouse. Unavailable to normal systems, as these lack mouse support. |
− | |return1=The mouse button that was clicked. Left Mouse Button is returned as the number 1, | + | |return1=The mouse button that was clicked. Left Mouse Button is returned as the number 1, Right Mouse Button is returned as the number 2 and Middle Mouse Button is returned as the number 3 |
|return2=The X-coordinate of the click (in screen-characters). | |return2=The X-coordinate of the click (in screen-characters). | ||
|return3=The Y-coordinate of the click (in screen-characters). | |return3=The Y-coordinate of the click (in screen-characters). | ||
|examples= | |examples= | ||
{{Example | {{Example | ||
− | |desc=Print the button and the co-ordinates of every mouse click we receive | + | |desc=Print the button and the co-ordinates of every mouse click we receive. |
|code= | |code= | ||
while true do | while true do | ||
− | local event, button, | + | local event, button, x, y = '''[[os.pullEvent]]( "mouse_click" )''' |
− | [[print]](" | + | |
+ | [[print]]( "The mouse button ", button, " was pressed at ", x, " and ", y ) | ||
end | end | ||
|output=The button that was pressed, followed by the X and Y position of the event. | |output=The button that was pressed, followed by the X and Y position of the event. | ||
}} | }} | ||
}} | }} |
Revision as of 11:45, 28 June 2015
Examples
Example | |
Print the button and the co-ordinates of every mouse click we receive. | |
Code |
while true do local event, button, x, y = os.pullEvent( "mouse_click" ) print( "The mouse button ", button, " was pressed at ", x, " and ", y ) end |
Output | The button that was pressed, followed by the X and Y position of the event. |