Count Property



 
The Count property contains the number of inserted coins.


Syntax

    [long=] SiteKiosk.Plugins("SiteCash").Devices2.Item(index).Coins.Count
    
Possible Values
    Long value that retrieves the number of coin values.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the number of inserted coins of the first existing device in an alert window.

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

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

Back to top