Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PDF and Flash

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0

Hi there,

How shall I link an acrobat reader file to a Flash presentation ?

Thanks

 
What's with all these unregistered visitors, suddenly?


If you can spill out the $49. bucks... This little pgm will apparently do marvels:


Otherwise you can allways try something like this:

on(press){
fscommand ("exec", "AcroRd32"+chr(9)+"yourpdf's.pdf");
}

The above will only work if your Acrobat reader.exe (mine is AcroRd32.exe - change it for your's and without the <.exe>), is installed in the c:\windows directory.

If the reader is installed somewhere else, then using something like this should work, although this first opens an annoying dos window before opening the Acrobat reader:

on(press){
fscommand (&quot;exec&quot;, &quot;start&quot;+chr(9)+&quot;yourpdf's.pdf&quot;);
}

Regards,
mywink2.gif
ldnewbie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top