ActiveWindow Property



 
The ActiveWindow property contains an object representing the currently active window.


Syntax

    [obj=] SiteKiosk.WindowList.ActiveWindow
Possible Values
    WindowInfo object that represents the active window.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the current window handle in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    thiswindow = SiteKiosk.WindowList.ActiveWindow;
    alert(thiswindow.Handle);
    </SCRIPT>
    

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

Back to top