GetBrowserSettings: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 18: Line 18:


==Example==
==Example==
This example is '''not tested'''
<section name="Example" class="client" show="true">
This creates a browser and get the browser settings when the browser has been created
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local window = guiCreateWindow(200, 200, 1024, 768, "Webbrowser", false)
window = guiCreateWindow(377, 156, 671, 454, "", false)
local browser = guiCreateBrowser(0, 0, 800, 600, false, false, false, window)
guiWindowSetSizable(window, true)


for k,v in pairs(getBrowserSettings(browser)) do
webBrowser = guiCreateBrowser(9, 26, 652, 418, false, false, false, window)
outputChatBox("['"..tostring(k).."'] = '"..tostring(v))
 
local theBrowser = guiGetBrowser(webBrowser)
 
addEventHandler("onClientBrowserCreated", theBrowser, function()
showCursor(true)
loadBrowserURL(source, "http://google.com\\")
for k,v in pairs(getBrowserSettings(theBrowser)) do
outputChatBox("['"..tostring(k).."'] = "..tostring(v))
end
end
end
)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
Line 32: Line 43:


[[hu:getBrowserSettings]]
[[hu:getBrowserSettings]]
[[RO:getBrowserSettings]]

Latest revision as of 18:11, 8 June 2020

This function returns a table containing the browser settings.

Syntax

table getBrowserSettings ()

OOP Syntax Help! I don't understand this!

Method: Browser.getSettings(...)


Returns

A table having the following keys:

  • RemoteEnabled: true if remote websites are enabled, false otherwise
  • RemoteJavascript: true if Javascript is enabled on remote websites, false otherwise
  • PluginsEnabled: true if plugins such as Flash, Silverlight (but not Java) are enabled, false otherwise. This setting is false by default.

Example

Click to collapse [-]
Example

This creates a browser and get the browser settings when the browser has been created

window = guiCreateWindow(377, 156, 671, 454, "", false)
guiWindowSetSizable(window, true)

webBrowser = guiCreateBrowser(9, 26, 652, 418, false, false, false, window)

local theBrowser = guiGetBrowser(webBrowser)

addEventHandler("onClientBrowserCreated", theBrowser, function()
showCursor(true)
loadBrowserURL(source, "http://google.com\\")
for k,v in pairs(getBrowserSettings(theBrowser)) do
outputChatBox("['"..tostring(k).."'] = "..tostring(v))
end
end
)

See Also