OnClientGUIChanged

From Multi Theft Auto: Wiki
Revision as of 21:40, 20 July 2020 by LordHenry (talk | contribs) (Undo revision 67059 by Pirulax (talk))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event is fired when a memo or an editbox has changed (either by the user or by guiSetText).

Parameters

element theElement
  • theElement: The GUI element which was changed.

Source

The source of this event is the element which was changed.

Example

This example creates an editbox and prints a message when it has changed

editBox = guiCreateEdit(0.3,0.1,0.4,0.1,"",true)
addEventHandler("onClientGUIChanged", editBox, function(element) 
   outputChatBox("The box now reads: " .. guiGetText(element))
end)

Or

editBox = guiCreateEdit(0.3,0.1,0.4,0.1,"",true)
addEventHandler("onClientGUIChanged", editBox, function() 
   outputChatBox("The box now reads: " .. guiGetText(source))
end)

See Also

Input

GUI


Client event functions