SiteCafeClient Object



 
The SiteCafeClient object provides SiteCafe client functionality.


Members Table

Remarks
    This object is available through the collection Devices. Use the SiteCafeClient object to interact with the SiteCafe server.
    This device can be activated in the SiteKiosk configuration.

    Use the SiteCafe main object within the SiteCafe Manager for server functionality.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example displays the computer name.

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

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

Back to top