OnClientBrowserLoadingStart: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 12: Line 12:
* {{New feature/item|3.0160|1.6|7888|'''isMainFrame:''' a [[boolean]] representing whether the entire page (main frame) was loaded or an ''<iframe>'' inside the page was loaded.
* {{New feature/item|3.0160|1.6|7888|'''isMainFrame:''' a [[boolean]] representing whether the entire page (main frame) was loaded or an ''<iframe>'' inside the page was loaded.
** '''true''': If the URL is loaded in the main frame.
** '''true''': If the URL is loaded in the main frame.
** '''false''': If the URL is loaded in a ''<iframe>''.
** '''false''': If the URL is loaded in a ''<iframe>''.}}
}}





Latest revision as of 20:30, 19 September 2018

The event is triggered when a webbrowser starts loading a page.

Parameters

string URL, boolean isMain
  • URL: string containing the URL that will be loaded.
  • isMainFrame: a boolean representing whether the entire page (main frame) was loaded or an <iframe> inside the page was loaded.
    • true: If the URL is loaded in the main frame.
    • false: If the URL is loaded in a <iframe>.


Source

The webbrowser element.

Example

local browser = guiCreateBrowser(0, 0, 800, 600, false, false, false)
local theBrowser = guiGetBrowser(browser)
showCursor(true)


addEventHandler("onClientBrowserLoadingStart", theBrowser, function(url, isMainFrame)
  if (isMainFrame) then
    outputChatBox("Loading "..url.." in the main frame...")
  else
    outputChatBox("Loading "..url.." in a iframe...")
  end
end)

addEventHandler("onClientBrowserCreated", theBrowser, function()
  loadBrowserURL(source, "https://www.w3schools.com/html/html_iframe.asp")
end)


See Also