SetBrowserRenderingPaused: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 20: Line 20:


==Example==
==Example==
Todo
<syntaxhighlight lang="lua">
--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 command named 'pause'
  function (player, command, value)
    if (value) then -- checking for a value
      setBrowserRenderingPaused (theBrowser, value)
    else -- if there is no value
      outputChatBox ("You must enter a value.", player)
    end
  end
)<\code>


==See also==
==See also==
{{CEF_functions}}
{{CEF_functions}}

Revision as of 16:57, 20 August 2015

Accessories-text-editor.png Script Example Missing Function SetBrowserRenderingPaused needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

This function sets the rendering state of a browser.

Syntax

bool setBrowserRenderingPaused ( browser webBrowser, bool paused )

OOP Syntax Help! I don't understand this!

Method: sound:setRenderingPaused(...)
Counterpart: setBrowserRenderingPaused


Required Arguments

  • webBrowser: The browser
  • paused: true to pause rendering, false to continue

Returns

Returns true if the state was successfully changed

Example

<syntaxhighlight lang="lua"> --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 command named 'pause'

 function (player, command, value)
   if (value) then -- checking for a value
     setBrowserRenderingPaused (theBrowser, value) 
   else -- if there is no value
     outputChatBox ("You must enter a value.", player)
   end
 end

)<\code>

See also