HU/focusBrowser

From Multi Theft Auto: Wiki
Revision as of 11:38, 30 July 2018 by Surge (talk | contribs) (Created page with "__NOTOC__ {{Client function hu}} {{New feature/item|3.0150|1.5|| This function will attempt to focus the browser or unfocus all browsers. The browser that...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function will attempt to focus the browser or unfocus all browsers. The browser that is focused will retrieve keyboard input.

Szintaxis

bool focusBrowser ( browser webBrowser )

OOP Syntax Help! I don't understand this!

Method: browser:focus(...)


Kötelező argumentumok

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

Visszaadott érték

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

Példa

Click to collapse [-]
Client

This example creates browser and focus it

local browser = createBrowser(860, 680, false)
addEventHandler("onClientBrowserCreated", browser,
   function ()
       focusBrowser(source)
   end
)

Lásd még

Fordította

  • Surge