SetBrowserVolume: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
The.Killer (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
{{New feature/item|3.0150|1.5|| | {{New feature/item|3.0150|1.5|| | ||
This function sets either a specific [[Element/Browser|browser]]'s volume, or the overall volume for browsers. | This function sets either a specific [[Element/Browser|browser]]'s volume, or the overall volume for browsers. | ||
Line 20: | Line 19: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <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 ("volume", -- Add command named 'value' | |||
function (player, command, value) | |||
if tonumber (value) then -- checking if the value is a number | |||
setBrowserVolume (theBrowser, value) -- setting the volume value | |||
else -- if there is no value | |||
outputChatBox ("You must enter a value.", player) | |||
end | |||
end | |||
) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{CEF_functions}} | {{CEF_functions}} |
Revision as of 10:48, 12 September 2015
This function sets either a specific browser's volume, or the overall volume for browsers.
Syntax
bool setBrowserVolume ( [browser webBrowser], float volume )
OOP Syntax Help! I don't understand this!
- Method: browser:setVolume(...)
- Counterpart: setBrowserVolume
Required Arguments
- volume: A floating point number representing the desired volume level. Range is from 0.0 to 1.0
Optional Arguments
- webBrowser: A browser element
Example
--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 ("volume", -- Add command named 'value' function (player, command, value) if tonumber (value) then -- checking if the value is a number setBrowserVolume (theBrowser, value) -- setting the volume value else -- if there is no value outputChatBox ("You must enter a value.", player) end end )
See Also
- canBrowserNavigateBack
- canBrowserNavigateForward
- createBrowser
- executeBrowserJavascript
- focusBrowser
- getBrowserProperty
- getBrowserSettings
- getBrowserSource
- getBrowserTitle
- getBrowserURL
- injectBrowserMouseDown
- injectBrowserMouseMove
- injectBrowserMouseUp
- injectBrowserMouseWheel
- isBrowserDomainBlocked
- isBrowserFocused
- isBrowserLoading
- isBrowserRenderingPaused
- loadBrowserURL
- navigateBrowserBack
- navigateBrowserForward
- reloadBrowserPage
- requestBrowserDomains
- resizeBrowser
- setBrowserAjaxHandler
- setBrowserProperty
- setBrowserRenderingPaused
- setBrowserVolume
- toggleBrowserDevTools