OnClientGUIDoubleClick: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Client event}} | {{Client event}} | ||
__NOTOC__ | __NOTOC__ | ||
Line 21: | Line 20: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | |||
===GUI events=== | |||
{{GUI_events}} | |||
===Client event functions=== | |||
{{Client_event_functions}} | |||
[[Category:Incomplete Event]] | |||
[[Category:Needs_Example]] |
Revision as of 10:12, 23 July 2009
This event is fired when the user double clicks a GUI element.
Parameters
string button, string state, int absoluteX, int absoluteY
- button: the name of the mouse button that the GUI element was double clicked with.
- state: the state of the mouse button. "down" or "up".
- absoluteX: the X position of the mouse cursor, in pixels, measured from the left side of the screen.
- absoluteY: the Y position of the mouse cursor, in pixels, measured from the top of the screen.
Source
The source of this event is the GUI element that was double clicked.
Example
See Also
GUI events
Input
GUI
- onClientGUIAccepted
- onClientGUIBlur
- onClientGUIChanged
- onClientGUIClick
- onClientGUIComboBoxAccepted
- onClientGUIDoubleClick
- onClientGUIFocus
- onClientGUIMouseDown
- onClientGUIMouseUp
- onClientGUIMove
- onClientGUIScroll
- onClientGUISize
- onClientGUITabSwitched
- onClientMouseEnter
- onClientMouseLeave
- onClientMouseMove
- onClientMouseWheel