Login using the username and password you created for AcrobatUsers.com.
Note: This is not the same as your Adobe ID.
Benefits of Free Membership:
Find out what AcrobatUsers.com is all about
You don't have to be a member to look at any content on the site. Increase your expertise with our helpful tutorials, videos, forums, and sample PDFs.
Like what you see? Take the next step and become a member. Register now to get discounts, attend eSeminars, ask questions and more.
Get the most out of your membership. Post in the forums, create your profile, submit to the gallery, attend a user group meeting. Log In now.
Hello,
I'm using Acrobat 9 Pro and would like to create a PDF document with hyperlinks to the some of the attachments. I can easily create these hyperlinks to the attachments through the "Create Link" feature, but was wondering if there is any way to find out what path name is being used for the hyperlink.
Thanks!
David
My Product Information:
Acrobat Pro 9.2 / Windows
Offline

An attachment is a Data object, and each Data object has a path property, which can be accessed using a script.
Offline
Thanks for the tip, try67,
I guess I'm going to have to fiddle around with JavaScripting to figure this out.
Offline

However, I don't think you can use this property to open the file, if that's what you intend to do.
An attachment is no longer a file but a part of the PDF. If you want to open it you can do so with a script (only if it's a PDF file, though), but not by using the original path.
Offline
That's actually what I would like to do--open an attached pdf file from a hyperlink on the main pdf document. I was wondering if there was any way to get the path name to that attached pdf file. I understand that it is part of the PDF, but Acrobat must be using some type of path name or mapping indicator when a person uses the "Create Link" feature to hyperlink to an attached PDF document.
Would the Data object path property give me the path name or mapping indicator for the attached pdf file?
Thanks again!
David
Offline

I don't think so. A PDF needs to be portable (that's what the P in PDF stands for, after all), so the attachment has to be included in the file, or you would need to send it separately and place it in the right folder for it to work...
I don't think you can use the Link tool to open an attached file. You can use a script, though.
Have a look at the openDataObject method of the Document object. It allows you to open a Data object (an attachment), if you know its name. After you open it, you can tell it to go to a specific page using the pageNum property.
Offline
Actually, you can use the Link Tool to open an attached file to a specific page/section. You select the Action "Go to a Page View" and set the link to a page or section in the attached file.
What I would like is the actual path name that Acrobat uses when it creates this link.
Thanks!
Offline