Opening an external file

Hi, I’m using flash to create an exe file for a cd. From the exe file I’d like to open a pdf file externally. I got it to work but the pdf opens behind the main exe file. Any help is greatly appreciated.

thank you

this is the code I’m using

on (release) {
getURL(“MillenTrainingSheet.pdf”, “_top”);
}

you tried “_blank” instead of _top?

Are you using the fullscreen fscommand. If so, the only way I’ve found around it is to put:
on (release) {
fscommand(“fullscreen”, false);
getURL(“blahblah.pdf”, _blank);
}

I also include a maximize button in the top corner to hit after they close the pdf so that sets fullscreen back to true.