OnClientBrowserNavigate: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
}}
}}


==Parameters==  
==االتعليمات==  
<syntaxhighlight lang="lua">
<syntaxhihlgight lang="lua">
string targetURL, bool isBlocked, bool isMainFrame
string targetURL, bool isBlocked, bool isMainFrame
</syntaxhighlight>
</syntaxhighlight>

Revision as of 13:06, 10 April 2017

The event is executed when the browser loads a new page. Do not use loadBrowserURL in the attached function.

االتعليمات

<syntaxhihlgight lang="lua"> string targetURL, bool isBlocked, bool isMainFrame </syntaxhighlight>

  • targetURL: The page the browser loaded
  • isBlocked: If the browser was created with isLocal set to true, and the browser tried to load a remote page, this would be set to true (and vice-versa)
  • isMainFrame: Whether the entire page (main frame) was loaded or an <iframe> inside the page was loaded

Source

The browser element

Example

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

Before submitting check out Editing Guidelines Script Examples.
-- TODO


Issues

Issue ID Description
#9173 onClientBrowserNavigate is triggered for <iframe> elements

See Also