IsBrowserLoading: Difference between revisions
Jump to navigation
Jump to search
m (Jusonex moved page Cef/isBrowserLoading to IsBrowserLoading) |
|||
Line 18: | Line 18: | ||
==Example== | ==Example== | ||
This example will add an command /checkload to check weather the site is loading or not. | |||
<syntaxhighlight lang="lua"> | |||
local webbrowser = createBrowser(1000, 1000, false, false) | |||
loadBrowserUrl(webbrowser, "https://www.youtube.com/watch?v=jofNR_WkoCE") | |||
addCommandHandler("checkload", | |||
function() | |||
if isBrowserLoading(webbrowser) then | |||
outputChatBox("Please wait, The site is loading!") | |||
else | |||
outputChatBox("This site was already loaded") | |||
end | |||
end | |||
)</syntaxhighlight> | |||
==See Also== | ==See Also== |
Revision as of 09:59, 13 April 2015
This function checks if a browser is currently loading a website.
Syntax
bool isBrowserLoading ( browser webBrowser )
OOP Syntax Help! I don't understand this!
- Method: browser:isLoading(...)
- Counterpart: isBrowserLoading
Required arguments
- webBrowser: The browser
Returns
Returns true if the browser is loading a website, false otherwise and nil if invalid arguments were passed.
Example
This example will add an command /checkload to check weather the site is loading or not.
local webbrowser = createBrowser(1000, 1000, false, false) loadBrowserUrl(webbrowser, "https://www.youtube.com/watch?v=jofNR_WkoCE") addCommandHandler("checkload", function() if isBrowserLoading(webbrowser) then outputChatBox("Please wait, The site is loading!") else outputChatBox("This site was already loaded") end end )
See Also
Todo
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