isBrowserRenderingPaused | Multi Theft Auto: Wiki Skip to content

isBrowserRenderingPaused

Client-side
Server-side
Shared

Pair: setBrowserRenderingPaused

This function gets the rendering state of a browser element.

OOP Syntax Help! I don't understand this!

  • Method: browser:isRenderingPaused(...)
  • Variable: .renderingPaused

Syntax

bool isBrowserRenderingPaused ( browser webBrowser )
Required Arguments
  • webBrowser: The browser element to get the rendering state of.

Returns

  • bool: result

Returns true if the browser rendering is paused, false otherwise.

Code Examples

client

This will create a browser element and a command pause to pause the browser rendering.

-- In order to render the browser on the full screen, we need to know the dimensions.
local screenWidth, screenHeight = guiGetScreenSize ()
-- Let's create a new browser in remote mode.
local window = guiCreateWindow (0, 0, screenWidth, screenHeight, "Webbrowser", false)
local browser = guiCreateBrowser (0, 0, 800, 600, false, false, false, window)
-- The event onClientBrowserCreated will be triggered, after the browser has been initialized.
-- After this event has been triggered, we will be able to load our URL
local theBrowser = guiGetBrowser (browser) -- Get the browser element from gui-browser
addEventHandler ("onClientBrowserCreated", theBrowser,
function ()
-- After the browser has been initialized, we can load www.youtube.com
loadBrowserURL (source, "http://www.youtube.com")
end
)
addCommandHandler ("pause", -- Add a command named 'pause'
function (player, commandName)
if isBrowserRenderingPaused (theBrowser) then
setBrowserRenderingPaused (theBrowser, false)
else
setBrowserRenderingPaused (theBrowser, true)
end
end
)