mouse_click event
|
|||
Prints the mouse coordinates and button name every time a mouse button is pressed. | |||
Code | <nowiki>
local button_names = { [1] = "left", [2] = "right", [3] = "middle" }
while true do
local event, button, x, y = os.pullEvent("mouse_click")
print("The", button_names[button], "mouse button has been pressed at", x, ",", y)
end
</nowiki>
|
mouse_click Event | |
---|---|
Returns
| |
Source | CC:Tweaked |
Occurs every time a mouse button is pressed.
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.