IsProcessRunning Method
The IsProcessRunning method determines if a specified process is running.
Syntax
[bool=] SiteKiosk.ExternalApps.IsProcessRunning(path)
|
Parameters
path |
String that specifies the path to the application. |
Return Value
Returns a Boolean value that contains the running status.
Remarks
Examples
The following example determines if the first configured external application is
currently running using the path of this application.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
path = SiteKiosk.ExternalApps.Item(1).Path;
alert(SiteKiosk.ExternalApps.IsProcessRunning(path));
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top