Kill Method
The Kill method runs the application.
Syntax
SiteKiosk.ExternalApps.Item(index).Kill(waittime)
|
Parameters
waittime |
Long value that specifies how long SiteKiosk will wait until killing the application process. |
Return Value
Remarks
Examples
The following example kills the application configured first immediately.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.ExternalApps.Item(1).Kill(0);
</SCRIPT>
|
Applies to
SiteKiosk v7.2 (and later versions).
Back to top