OnClientGUIAccepted

From Multi Theft Auto: Wiki

Jump to: navigation, search

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

Parameters

element editBox
  • editBox: The editbox which had focus.

Source

The source of this event is always the root element.

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

GUI events

Client event functions

FROM VERSION 1.3.1 ONWARDS