There are just a couple of things to remember with the applescripts that you activate with FScommand from flash
Below is the applescript that we use to open a pdf from the cdrom. You'll notice that I have commented out the command activate. This is because the flash projector runs in full screen and I don't want a finder window as well as the pdf to open on top. Just change the open document command so that it points to your file.
Applescript:
tell application "Finder"
(*activate*)
open document file "document.pdf" of folder "pdfs"
of folder "data" of folder "mac" of disk "CD"
end tell
When you save the applescript do it as an appliction bundle. There is the option to save just as an application but this will not produce a universal app that runs on both intel and PPC macs. Uncheck the start up screen option so that there is no promt when the script is run. Check run only if you want to protect your script.
