OnClientBrowserLoadingStart: Difference between revisions
Jump to navigation
Jump to search
Lars-Marcel (talk | contribs) No edit summary |
Fernando187 (talk | contribs) m (params) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 7: | Line 7: | ||
==Parameters== | ==Parameters== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string URL, boolean | string URL, boolean isMainFrame | ||
</syntaxhighlight> | </syntaxhighlight> | ||
*'''URL:''' [[string]] containing the URL that will be loaded. | *'''URL:''' [[string]] containing the URL that will be 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. | * {{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. '''false''': If the URL is loaded in a ''<iframe>''.}} | ||
}} | |||
Latest revision as of 12:28, 31 May 2025
The event is triggered when a webbrowser starts loading a page.
Parameters
string URL, boolean isMainFrame
- 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
- onClientBrowserCreated
- onClientBrowserCursorChange
- onClientBrowserDocumentReady
- onClientBrowserInputFocusChanged
- onClientBrowserLoadingFailed
- onClientBrowserLoadingStart
- onClientBrowserNavigate
- onClientBrowserPopup
- onClientBrowserResourceBlocked
- onClientBrowserTooltip
- onClientBrowserWhitelistChange