OnClientGUIMove: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: {{Client event}} __NOTOC__ This event is triggered each time the user moves a GUI element. ==Parameters== ''None'' ==Source== The source of this event is ...)
 
Line 10: Line 10:


==Example==  
==Example==  
<syntaxhighlight lang="lua">
This example would output to the chatbox what the player moved.
--TODO
<syntaxhighlight lang="lua">addEventHandler("onClientGUIMove",guiRoot,function()
outputChatBox("You have moved :"..getElementType(source))
end)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 06:44, 28 June 2012

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

Input

GUI


Client event functions