IsBrowserFocused: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 18: Line 18:
==Example==
==Example==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
TODO</syntaxhighlight>
local theBrowser = guiCreateBrowser ( 150, 150, 1280, 720, true, false, false)
addEventHandler("onClientKey", localPlayer, function(button, state) -- adds the event handler.
if button == "lctrl" and state = "down" then -- if the pressed key is lctrl and the state is down then we will check is the browser focused or not.
  if isBrowserFocused(theBrowser) then
    outputChatbox("the browser is focused.") -- if the browser is focused then we will write this to chatbox.
  else
      outputChatbox("the browser is not focused.")-- if the browser is not focused then we will write this to chatbox.
  end
end
end)
</syntaxhighlight>


==See Also==
==See Also==
{{CEF_functions}}
{{CEF_functions}}

Revision as of 20:46, 27 March 2017

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

Before submitting check out Editing Guidelines Script Examples.

This function checks if a browser is focused.

Syntax

bool isBrowserFocused ( browser webBrowser )

OOP Syntax Help! I don't understand this!

Method: browser:isFocused(...)


Required arguments

  • webBrowser: The browser

Returns

Returns true if the browser is focused, false otherwise and nil if invalid arguments were passed.

Example

local theBrowser = guiCreateBrowser ( 150, 150, 1280, 720, true, false, false)
addEventHandler("onClientKey", localPlayer, function(button, state) -- adds the event handler.
 if button == "lctrl" and state = "down" then -- if the pressed key is lctrl and the state is down then we will check is the browser focused or not. 
  if isBrowserFocused(theBrowser) then
     outputChatbox("the browser is focused.") -- if the browser is focused then we will write this to chatbox.
  else
      outputChatbox("the browser is not focused.")-- if the browser is not focused then we will write this to chatbox.
  end
 end
end)

See Also