Kill Method



 
The Kill method simply kills the specified application after a specified waittime.


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
    None.
Remarks
    None.
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