Path Property



 
The Path property contains the full path of the application.


Syntax

    [str=] SiteKiosk.ExternalApps.Item(index).Path
Possible Values
    String that retrieves the full path.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the full path of the first application that was configured.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.ExternalApps.Item(1).Path);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top