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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Director and Acrobat 1

Status
Not open for further replies.

cobweb

IS-IT--Management
May 5, 2002
95
GB
Hi there:

I am trying to compose a cd with a Director movie; a component of which is to launch acrobat files.

I cannot find a way of doing this.

Being a complete novice I have acquired a few manuals but they are not helping.

Can anybody out there help?! I am using Director 7

Thanks in anticipation!
 
If you know the path to the Acrobat or Reader, you can use the lingo command
Code:
open
:
Code:
--
open “some_acrobat_file.pdf” with “C:\Program Files\Adobe\Acrobat 5.0\Acrobat\Acrobat.exe”
--

Or you can use BuddyAPI
Code:
baOpenFile
, which you won’t need to specify the path to the application:
Code:
--
baOpenFile(the moviePath & "some_acrobat_file.pdf" , "maximised")
--

Or use PDF/Impressario Xtra, which you can embed PDFs in your Director movie.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top