SiteKiosk Documentation
One Step Back

Restore Method




The Restore method restores an existing window.


Syntax

    SiteKiosk.WindowList.Restore(handle)
Parameters
    handleHandle 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 topBack to top

© 1997-2010 PROVISIO - Aventura, USA & Muenster, Germany - SiteKiosk DevTeam