IsMTAWindowFocused: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0160|1.5.9|21313| This function returns whether the MTA window is focused or not.}} ==Syntax== <syntaxhighlight lang="lua"> bool isMTAWindowFocused() </syntaxhighlight> ===Returns=== Returns ''true'' if the focus is on the MTA window, ''false'' if not. ==Example== This example prints the window focus state to debug output upon usage of the command (''focused'') <syntaxhighlight lang="lua"> function getWindowFocus()...")
 
(Remove obsolete Requirements section)
 
Line 19: Line 19:
addCommandHandler("focused", getWindowFocus)
addCommandHandler("focused", getWindowFocus)
</syntaxhighlight>
</syntaxhighlight>
==Requirements==
{{Requirements|n/a|1.5.9-9.21313|}}


==See Also==
==See Also==

Latest revision as of 17:33, 7 November 2024

This function returns whether the MTA window is focused or not.

Syntax

bool isMTAWindowFocused()

Returns

Returns true if the focus is on the MTA window, false if not.

Example

This example prints the window focus state to debug output upon usage of the command (focused)

function getWindowFocus()
    iprint(isMTAWindowFocused() and "focused" or "not focused")
end
addCommandHandler("focused", getWindowFocus)

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

Input

GUI