Launching other applications from within MOI

 From:  Michael Gibson
10174.2 In reply to 10174.1 
Hi pior, yes you can launch an external program using:
moi.filesystem.shellExecute( Path, Parameters /*optional - command line parameters to pass to program*/, false /*optional - wait for process to finish*/ );

So for example to launch notepad:
moi.filesystem.shellExecute( 'notepad.exe' );

- Michael