OnStatusTextChange Event



 
Fires when the text in the status bar changes.


Syntax

    SiteKioskWindow.SiteKioskWebBrowser.OnStatusTextChange = handler
Parameters
    abs_Text String that contains the text of the status bar.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window when the status bar text changes.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.SiteKioskWebBrowser.OnStatusTextChange = OSTChange;
    function OSTChange(abs_Text)
    {
       alert(abs_Text);
    }
    </SCRIPT>

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

Back to top