OnClientBrowserLoadingFailed: Difference between revisions
Jump to navigation
Jump to search
Fernando187 (talk | contribs) m (formatting) |
Fernando187 (talk | contribs) m (formatting) |
(No difference)
| |
Latest revision as of 17:55, 1 June 2025
The event is triggered when the browser can not load the page.
Parameters
string url, int errorCode, string errorDescription
- url: the requested URL.
- errorCode: the error code.
- errorDescription: a short description.
Source
The browser element.
Example
addEventHandler("onClientBrowserLoadingFailed", root,
function(url, errorCode, errorDescription)
outputChatBox("This webpage is not available" .. url .. "Unknown" .. errorCode .. "Unknown" .. errorDescription)
end
)
See Also
- onClientBrowserCreated
- onClientBrowserCursorChange
- onClientBrowserDocumentReady
- onClientBrowserInputFocusChanged
- onClientBrowserLoadingFailed
- onClientBrowserLoadingStart
- onClientBrowserNavigate
- onClientBrowserPopup
- onClientBrowserResourceBlocked
- onClientBrowserTooltip
- onClientBrowserWhitelistChange