CurrentTransactions Property
The CurrentTransactions property contains the current number of transactions of the device.
Syntax
[long=] AccumulatedMoneyItem.CurrentTransactions
|
Possible Values
Long value that retrieves the number of transactions.
|
The property is read only.
Remarks
Examples
The following example shows the current number of transactions of the first available device.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
var AMStorage = SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage;
var FirstDevice = SiteKiosk.Plugins("SiteCash").Devices2.Item(1).Name;
alert(AMStorage.DeviceRuntimeCounters(FirstDevice).CurrentTransactions);
</SCRIPT>
|
Applies to
SiteKiosk v6.5 (and later versions).
Back to top