LimboMoney Property



 
The LimboMoney property contains the limbo money of the device.


Syntax

    [currency=] SiteKiosk.Plugins("SiteCash").Devices2.Item(index).
                LimboMoney
    
Possible Values
    Currency value that retrieves the limbo money.

    The property is read only.
Remarks
    Use the CurrencyFormatter object for currency functionality.

    Limbo money is the sum of the current balance in SiteKiosk and the balance of the device.
Examples
    The following example shows the limbo money of the first device in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Devices2.Item(1).LimboMoney);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top