View Single Post
  #3  
Old 12.01.2015, 13:52
coalado's Avatar
coalado coalado is offline
JD Manager
 
Join Date: Feb 2009
Posts: 1,980
Default

Für den Trigger "A Download stopped":

Code:
if (link.isFinished()) {
    var callbackWhenProcessTerminates = function(exitCode, stdOut, errOut) {
        alert("Closed Notepad");
    };

    callAsync(callbackWhenProcessTerminates, "notepad.exe", JD_HOME + "\\license.txt");
}

__________________
Reply With Quote