OnClientGUIAccepted: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 7: Line 7:
element editBox
element editBox
</syntaxhighlight>
</syntaxhighlight>
* '''editBox''': The editbox which had focus.
* '''editBox''': the [[Element/GUI/Edit_field|editbox]] which had focus.


==Source==
==Source==
Line 26: Line 26:


==See Also==
==See Also==
===GUI events===
{{GUI_events}}
{{GUI_events}}
===Client event functions===
===Client event functions===
{{Client_event_functions}}
{{Client_event_functions}}

Latest revision as of 14:29, 20 May 2018

This event is triggered when enter is pressed on an editbox.

Parameters

element editBox
  • editBox: the editbox which had focus.

Source

The source of this event is the editbox which enter was pressed on.

Example

This example creates an editbox and prints a message when enter is pressed.

editBox = guiCreateEdit ( 0.3, 0.1, 0.4, 0.1, "", true )
addEventHandler( "onClientGUIAccepted", editBox,
    function( theElement ) 
        outputChatBox( guiGetText( theElement ) )
    end
)

See Also

Input

GUI


Client event functions

Shared