Activate Method
The Activate method activates an existing window.
Syntax
SiteKiosk.WindowList.Activate(handle)
|
Parameters
handle |
Handle that represents a window. |
Return Value
Remarks
The window will pop up and become focussed.
Examples
The following example activates the current window every 3 seconds.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
thiswindow = SiteKiosk.WindowList.ActiveWindow;
window.setInterval("doActivate();",3000);
function doActivate()
{
SiteKiosk.WindowList.Activate(thiswindow.Handle);
}
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top