Show Method



 
The Show method shows a formerly hidden SiteKiosk window again.


Syntax

    SiteKioskWindow.Show()
Return Value
    None.
Remarks
    None.
Examples
    The following example calls a method of the SiteKioskWindow object that will hide the window and show it again after 3 seconds.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.Hide();
    window.setTimeout("SiteKioskWindow.Show();", 3000);
    </SCRIPT>

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

Back to top