Launching other applications from within MOI

 From:  Michael Gibson
10174.3 In reply to 10174.1 
Note that if you have any backslash \ characters in a string you'll need to put in 2 of them like: 'c:\\path\\program.exe' .

That's because the backslash is an escape character for Javascript code, like \n is the escape code for making a newline character. To do a backslash in a string you need \\ .

- Michael