GuiGetInputEnabled

From Multi Theft Auto: Wiki
Revision as of 20:15, 28 March 2008 by Awwu (talk | contribs)
Jump to navigation Jump to search

This function checks whether user input is focused on the GUI or the game.

Syntax

bool guiGetInputEnabled ( )

Returns

Returns true if input is focused on GUI, false if it's focused on the game.

Example

This example adds a command with which you can check whether the input is focused on GUI or game.

addCommandHandler( "checkinput", function ()
    if guiGetInputEnabled( ) then
        outputChatBox( "Your input focus is currently on GUI." )
    else 
        outputChatBox( "Your input focus is currently on game." )
    end
end )

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows