RequestBrowserDomains: Difference between revisions
Jump to navigation
Jump to search
m (Removed {{Needs_Example}}) |
m (Link to the Romanian translation of this page added.) |
||
(6 intermediate revisions by 5 users not shown) | |||
Line 3: | Line 3: | ||
{{New feature/item|3.0150|1.5|| | {{New feature/item|3.0150|1.5|| | ||
This function opens a request window in order to accept the requested remote URLs. | This function opens a request window in order to accept the requested remote URLs. | ||
{{Note|You must use this function prior to calling [[loadBrowserURL]] because every domain, with exceptions in the whitelist [https://github.com/multitheftauto/mtasa-blue/blob/505467ec8c3ac1b3ad17fb0247dc15809e013968/Client/cefweb/CWebCore.cpp#L280-L283 here] and [https://github.com/multitheftauto/mtasa-blue/blob/505467ec8c3ac1b3ad17fb0247dc15809e013968/Client/cefweb/CWebCore.cpp#L205-L206 there], is blocked by default.}} | |||
}} | }} | ||
Line 16: | Line 17: | ||
*'''callback:''' A callback function that is called as soon as the result is available | *'''callback:''' A callback function that is called as soon as the result is available | ||
Syntax: | Syntax: | ||
<syntaxhighlight lang="lua">function(bool | <syntaxhighlight lang="lua">function(bool wasAccepted, table new_domains)</syntaxhighlight> | ||
===Returns=== | ===Returns=== | ||
Line 36: | Line 37: | ||
==See also== | ==See also== | ||
{{CEF_functions}} | {{CEF_functions}} | ||
[[hu:requestBrowserDomains]] | |||
[[RO:requestBrowserDomains]] |
Latest revision as of 14:22, 8 April 2020
This function opens a request window in order to accept the requested remote URLs.
Syntax
bool requestBrowserDomains ( table pages [, bool parseAsURL = false, function callback ] )
OOP Syntax Help! I don't understand this!
- Method: Browser.requestDomains(...)
Required Arguments
- pages: A table containing all domains
Optional Arguments
- parseAsURL: true if the passed addresses should be converted from URLs, false otherwise.
- callback: A callback function that is called as soon as the result is available
Syntax:
function(bool wasAccepted, table new_domains)
Returns
Returns true, if the string was successfully read, false otherwise.
Example
requestBrowserDomains({ "mtasa.com" }) -- request browser domain showCursor(true) -- show cursor addEventHandler("onClientBrowserWhitelistChange", root, function(newDomains) if newDomains[1] == "mtasa.com" then local browser = createBrowser(1280, 720, false, false) -- create browser loadBrowserURL(browser, "http://mtasa.com/") -- load browser url end end )
See also
- canBrowserNavigateBack
- canBrowserNavigateForward
- createBrowser
- executeBrowserJavascript
- focusBrowser
- getBrowserProperty
- getBrowserSettings
- getBrowserSource
- getBrowserTitle
- getBrowserURL
- injectBrowserMouseDown
- injectBrowserMouseMove
- injectBrowserMouseUp
- injectBrowserMouseWheel
- isBrowserDomainBlocked
- isBrowserFocused
- isBrowserLoading
- isBrowserRenderingPaused
- loadBrowserURL
- navigateBrowserBack
- navigateBrowserForward
- reloadBrowserPage
- requestBrowserDomains
- resizeBrowser
- setBrowserAjaxHandler
- setBrowserProperty
- setBrowserRenderingPaused
- setBrowserVolume
- toggleBrowserDevTools