ExecClip
Sometimes you need to launch documents from inside a flash exe projector, but there is a restriction to doesn't allow this.
ExecClip is a tool that helps to solve this problem, because it can load a simple bat file adding a filename.
Flash projector has another restriction to send parameters to a file, so you need to "save" the filename on clipboard.
A sample of code to make it work:
cmd = "myfile.pdf";
System.setClipboard(cmd);
fscommand("exec", "execClip.exe");
And this is enough to work.
You can download it from here.
Download a sample.