Active Property
The Active property indicates if the screensaver is currently active.
Syntax
[bool=] SiteKiosk.ScreenSaver.Active
|
Possible Values
Boolean value that retrieves the activity status.
|
The property is read only.
Remarks
Examples
The following example determines if the screensaver is currently active and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.ScreenSaver.Active);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top