AccessStatus Property



 
The AccessStatus property indicates whether an access control device allows access.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").AccessStatus
    
Possible Values
    Boolean value that retrieves the access status.

    The property is read only.
Remarks
    For example, the time limiter or SiteCafe in time mode is an access control device.
    This property is false if a payment device like a coin validator is used.
Examples
    The following example shows the access status in an alert window.

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

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

Back to top