WindowList Object
The WindowList object controls all open SiteKiosk windows.
Members Table
The following table lists the members provided by the WindowList object.
Remarks
This object is available through the main object SiteKiosk.
Use the WindowList object to receive information about all opened SiteKiosk windows or to show, hide or close them.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example minimizes the current window, which cannot be the main window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
thiswindow = SiteKiosk.WindowList.ActiveWindow;
SiteKiosk.WindowList.Minimize(thiswindow.Handle);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top