AcceptAll Method



 
The AcceptAll method accepts all coins.


Syntax

    SiteKiosk.Plugins("SiteCash").Devices2.Item(index).AcceptAll()
    
Return Value
    None.
Remarks
    None.
Examples
    The following example accepts all inserted coins of the first existing device.

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

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

Back to top