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
|