SessionIndex Property
The SessionIndex property contains the index number of the session.
Syntax
[long=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
SessionIndex
|
Possible Values
Long value that retrieves the index.
|
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