Show Method
The Show method shows a formerly hidden SiteKiosk window again.
Syntax
Return Value
Remarks
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