TotalCurrentMoney Property
The TotalCurrentMoney property contains the total sales amount accumulated since the last reset.
Syntax
[double=] SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage.
TotalCurrentMoney
|
Possible Values
Double value that retrieves the accumulated amount.
|
The property is read only.
Remarks
Examples
The following example shows the total sales amount accumulated since the last reset.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
var AMStorage = SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage;
alert(AMStorage.TotalCurrentMoney);
</SCRIPT>
|
Applies to
SiteKiosk v6.5 (and later versions).
Back to top