Tutorial: system.launchExternalProcess

system.launchExternalProcess

Runs an executable or batch file.

Example

fin.desktop.System.launchExternalProcess({
        path: "notepad",
        arguments: "",
        listener: function(code) {
                console.log('the exit code', code);
            } 
    },
    function() {
        console.log('all good');
    },
    function(){
        console.log('an error');
    });

listener callback

//This response has the following shape:
{
    uuid: "FB3E6E36-0976-4C2B-9A09-FB2E54D2F1BB" //The mapped UUID which identifies the launched process
}