ExternalAppInfo Object
The ExternalAppInfo object contains information about a configured application.
Members Table
The following table lists the members provided by the ExternalAppInfo object.
|
Properties |
Description |
DisplayText |
Description of the application. |
Path |
Full path of the application. |
ProcessID |
Process id of the application. |
Running |
If the application is currently running. |
|
Methods |
Description |
Kill |
Kills the application. |
Run |
Runs the application. |
RunSync |
Runs the application and returns the exit code. |
|
Remarks
This object is returned by the Item method.
Use the ExternalAppInfo object to receive the description of a configured application or to run it.
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 shows the description of the first application.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.ExternalApps.Item(1).DisplayText);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top