Busy Property



 
The Busy property indicates if the browser is currently busy.


Syntax

    [boolean=] SiteKioskWindow.SiteKioskWebBrowser.Busy
Possible Values
    Boolean value. True if the browser is busy.
    False if the browser is not busy.

    The property is read only.
Remarks
    None.
Examples
    The following example reads the Busy property and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKioskWindow.SiteKioskWebBrowser.Busy);
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top