Back

KillApp

Hello World

Kills a running app by its process ID.

app.KillApp( pid )

You can retreive a list of all running apps with their pids using the GetRunningApps function of the app object.

Example - Demo

function OnStart()
{
    var apps = app.GetRunningApps();
    var curApps = apps.filter( function(v) { return v.foreground; });
    var pid = curApps[0].pid;

    alert( "Kill app " + curApps[0].name );
    app.KillApp( pid );

    app.ShowPopup( "Done" ); // not shown
}
    Copy     Copy All       Run      
number: integer