GetBrowserSettings: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Link to the Romanian translation of this page added.)
Line 18: Line 18:


==Example==
==Example==
This example is '''not tested'''
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local window = guiCreateWindow(200, 200, 1024, 768, "Webbrowser", false)
local window = guiCreateWindow(200, 200, 1024, 768, "Webbrowser", false)
Line 24: Line 23:


for k,v in pairs(getBrowserSettings(browser)) do
for k,v in pairs(getBrowserSettings(browser)) do
  outputChatBox("['"..tostring(k).."'] = '"..tostring(v))
  outputChatBox("['"..tostring(k).."'] = "..tostring(v))
end
end
</syntaxhighlight>
</syntaxhighlight>

Revision as of 17:56, 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

local window = guiCreateWindow(200, 200, 1024, 768, "Webbrowser", false)
local browser = guiCreateBrowser(0, 0, 800, 600, false, false, false, window)

for k,v in pairs(getBrowserSettings(browser)) do
 outputChatBox("['"..tostring(k).."'] = "..tostring(v))
end

See Also