Restore Method



 
The Restore method restores an existing window.


Syntax

    SiteKiosk.WindowList.Restore(handle)
Parameters
    handle Handle that represents a window.
Return Value
    None.
Remarks
    The window will pop up and become focussed.
Examples
    The following example restores the current window every 3 seconds.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    thiswindow = SiteKiosk.WindowList.ActiveWindow;
    window.setInterval("doRestore();",3000);
    function doRestore()
    {
       SiteKiosk.WindowList.Restore(thiswindow.Handle);
    }
    </SCRIPT>
    

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

Back to top