FocusBrowser: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Make browser unfocusing clear)
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client_function}}
{{Client_function}}
{{Needs Example}}
{{New feature/item|3.0150|1.5||
{{New feature/item|3.0150|1.5||
This function will attempt to focus the [[Element/Browser|browser]] or unfocus all browsers.
This function will attempt to focus the [[Element/Browser|browser]] or unfocus all browsers.

Revision as of 15:45, 18 August 2015

Accessories-text-editor.png Script Example Missing Function FocusBrowser needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

This function will attempt to focus the browser or unfocus all browsers.

Syntax

bool focusBrowser ( browser webBrowser )

OOP Syntax Help! I don't understand this!

Method: browser:focus(...)
Counterpart: focusBrowser


Required Arguments

  • webBrowser: The web browser to be focused - if this is nil, it will unfocus all browsers.

Returns

Returns true if the browser was focused or if nil was passed, false if it failed to focus or the browser does not exist.

Example

--todo

See Also