RequestBrowserDomains: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Link to the Romanian translation of this page added.)
 
(4 intermediate revisions by 4 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|Using [[loadBrowserURL]] without using requestBrowserDomains so the links may not work.}}
{{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 17: 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 wasAccapted, table new_domains)</syntaxhighlight>
<syntaxhighlight lang="lua">function(bool wasAccepted, table new_domains)</syntaxhighlight>


===Returns===
===Returns===
Line 39: Line 39:


[[hu:requestBrowserDomains]]
[[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.

[[{{{image}}}|link=|]] Note: You must use this function prior to calling loadBrowserURL because every domain, with exceptions in the whitelist here and there, is blocked by default.

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