SiteKioskConfig Object



 
Main object of the SiteKiosk Configuration Wizard object model.


Members Table

Remarks
    This object is available in the form of scripts when you are using the SiteKiosk Configuration Wizard. Use the SiteKioskConfig object to examine or modify the running SiteKiosk Wizard application. The SiteKioskConfig object can be referenced directly.

    Before you can use the SiteKioskConfig objects you need to call the function window.external.InitScriptInterface() to initialize the script interface.

    Note that this object is only available in the SiteKiosk Configuration Wizard.
Examples
    The following example shows the current SiteKiosk version name in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKioskConfig.VersionString);
    </SCRIPT>
    

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

Back to top