Nov 26, 2002 #1 70 Instructor Jul 1, 2002 19 US Hello, I tried very hard to load a PDF file into my movie with onclick event. But it seems impossible for me. Does anyone know how to do that? Regards,
Hello, I tried very hard to load a PDF file into my movie with onclick event. But it seems impossible for me. Does anyone know how to do that? Regards,
Nov 26, 2002 #2 WildWest Programmer Apr 2, 2002 111 US You can't embed a PDF file inside of a movie. But here's AS that will load a PDF when you clikc on a button in your movie: on (release) { getURL("http://www.myserver.com/filename.pdf");} Upvote 0 Downvote
You can't embed a PDF file inside of a movie. But here's AS that will load a PDF when you clikc on a button in your movie: on (release) { getURL("http://www.myserver.com/filename.pdf");}
Nov 27, 2002 Thread starter #3 70 Instructor Jul 1, 2002 19 US Thanks very much. It works! However, after I closed the PDF file, my flash goes blank. Do you have any idea why? The action on my button is: on (release){ getURL("http://uofmpt.memphis.edu/environmentalhealth.pdf","_blank");} Upvote 0 Downvote
Thanks very much. It works! However, after I closed the PDF file, my flash goes blank. Do you have any idea why? The action on my button is: on (release){ getURL("http://uofmpt.memphis.edu/environmentalhealth.pdf","_blank");}