OnClientGUIMove
From Multi Theft Auto: Wiki
This event is triggered each time the user moves a GUI element.
Parameters
None
Source
The source of this event is the GUI element which was moved.
Example
This example would output to the chatbox what the player moved.
addEventHandler("onClientGUIMove",guiRoot,function() outputChatBox("You have moved :"..getElementType(source)) end)
See Also
GUI events
- onClientGUIClick
- onClientGUIDoubleClick
- onClientGUIChanged
- onClientGUIAccepted
- onClientGUIScroll
- onClientClick
- onClientDoubleClick
- onClientKey
- onClientCharacter
- onClientMouseEnter
- onClientMouseLeave
- onClientMouseMove
- onClientMouseWheel
- onClientCursorMove
- onClientGUIMouseDown
- onClientGUIMouseUp
- onClientGUIMove
- onClientGUISize
- onClientGUITabSwitched
Client event functions
FROM VERSION 1.4 r4973 ONWARDS