FocusBrowser: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
m (Link to the Romanian translation of this page added.)
 
(2 intermediate revisions by 2 users not shown)
Line 21: Line 21:
This example creates browser and focus it
This example creates browser and focus it
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local browser = guiCreateBrowser(0, 0, 800, 600, false, false, false)
local browser = createBrowser(860, 680, false)
addEventHandler("onClientBrowserCreated", browser,
addEventHandler("onClientBrowserCreated", browser,
   function ()
   function ()
Line 32: Line 32:
==See Also==
==See Also==
{{CEF_functions}}
{{CEF_functions}}
[[hu:focusBrowser]]
[[RO:focusBrowser]]

Latest revision as of 11:34, 8 April 2020

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

Syntax

bool focusBrowser ( browser webBrowser )

OOP Syntax Help! I don't understand this!

Method: browser:focus(...)


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

Click to collapse [-]
Client

This example creates browser and focus it

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

See Also