I am trying to assign a hyperlink to a button in a flash movie (CS4) that will open a local pdf file in a new browser window. I'm using the script:

on(release){
getURL ("Resume.pdf","_blank");
}

The file "Resume.pdf" is in the same folder as as the swf file, on a CD.
It compiles with no errors, but when I click on the button, IE opens with a blank page and "http://resume.pdf/" in the address bar, in other words it is interpreting it as an HTTP URL and not a local filename.

How do I point it to the local file?

Thanks

CP