OnBusyStatusChange Event



 
Fires when the busy status changes.


Syntax

    SiteKioskWindow.SiteKioskWebBrowser.OnBusyStatusChange = handler
Parameters
    avb_Busy Boolean value that is true if the browser is busy. False if the browser is not busy.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window each time the busy status changes.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.SiteKioskWebBrowser.OnBusyStatusChange = OBSChange;
    function OBSChange(avb_Busy)
    {
       alert(avb_Busy);
    }
    </SCRIPT>

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

Back to top