MouseButton1Down (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Example added
>Camoy
fixed
Line 1: Line 1:
{|
<onlyinclude>{{Event|name = MouseButton1Down
|<onlyinclude>{{Event|name = MouseButton1Down
|arguments = [[int]] x, [[int]] y
|arguments = [[int]] x, [[int]] y
|description = Fired when the mouse is in the left mouse down state on the GUI object.
|description = Fired when the mouse is in the left mouse down state on the GUI object.
|object = [[TextButton]], [[ImageButton]]
|objects = [[TextButton]], [[ImageButton]]
|}}</onlyinclude>
}}</onlyinclude>
|}
 
{{clear floats}}
 
{{Example|<pre>
{{Example|<pre>
gui.MouseButton1Down:connect(function()
gui.MouseButton1Down:connect(function()
Line 11: Line 12:
end)
end)
</pre>}}
</pre>}}
[[Category:Events]]

Revision as of 15:37, 27 January 2011

MouseButton1Down ( int x, int y )
Description Fired when the mouse is in the left mouse down state on the GUI object.
Member of: TextButton, ImageButton


Example
gui.MouseButton1Down:connect(function()
  print("Button1 down.")
end)