Running Property
The Running property indicates if the application is currently running.
Syntax
[bool=] SiteKiosk.ExternalApps.Item(index).Running
|
Possible Values
Boolean value that retrieves the running status.
|
The property is read only.
Remarks
Examples
The following example shows the Running property in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.ExternalApps.Item(1).Running);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top