SessionRunning Property
The SessionRunning property indicates whether a session is currently running.
Syntax
[bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
SessionRunning
|
Possible Values
Boolean value that retrieves the running status.
|
The property is read only.
Remarks
Examples
The following example displays the index number of the current session.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
if (SiteCafe.SessionRunning) alert(SiteCafe.SessionIndex);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top