You can check this:
http://www.macromedia.com/support/fl...projectors.htm
But basicly, you can simply use
fscommand("exec", "AcroRd32.exe"); , as long as the application to be opened is in a sub-folder (named fscommand) in the same directory as the projector calling it.
If you want to open one particular .txt file with notepad, for example, the only way I have found, is to use a batch file (.bat), also in the fscommand sub-folder, to call it.
fscommand("exec", "note.bat");
---------------------------------------
note.bat:
@ echo off
start c:\windows\desktop\testfscommand\fscommand\notepad .exe note.txt
exit
----------------------------------------
In the above, the projector is in the c:\windows\desktop\testfscommand and of course, notepad.exe and note.txt must be in the fscommand sub-folder, along with the batch file.
Regards,