setBrowserVolume | Multi Theft Auto: Wiki Skip to content

setBrowserVolume

Client-side
Server-side
Shared

Pair: getBrowserVolume

This function sets either a specific browser's volume, or the overall volume for browsers.

OOP Syntax Help! I don't understand this!

  • Method: browser:setVolume(...)
  • Variable: .volume

Syntax

bool setBrowserVolume ( float volume, [ browser webBrowser = nil ] )
Required Arguments
  • volume: A floating point number representing the desired volume level. Range is from 0.0 to 1.0.
Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use.

  • webBrowser (default: nil): A browser element.

Returns

  • bool: result

Returns true if successfully, false if there's something wrong.

Code Examples

client
--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 webBrowser = createBrowser(screenWidth, screenHeight, false, false)
--Function to render the browser.
function webBrowserRender()
--Render the browser on the full size of the screen.
dxDrawImage(0, 0, screenWidth, screenHeight, webBrowser, 0, 0, 0, tocolor(255,255,255,255), true)
end
--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 and start drawing.
addEventHandler("onClientBrowserCreated", webBrowser,
function()
--After the browser has been initialized, we can load www.youtube.com
loadBrowserURL(webBrowser, "http://www.youtube.com")
--Now we can start to render the browser.
addEventHandler("onClientRender", root, webBrowserRender)
end
)
addCommandHandler ("volume", -- Add command named 'volume'
function (command, value)
if tonumber (value) then -- checking if the value is a number
setBrowserVolume (webBrowser, value) -- setting the volume value
else -- if there is no value
outputChatBox ("You must enter a value.")
end
end
)