Ask a Question related to Adobe Acrobat Windows, Design and Development.
-
abrown@adobeforums.com #1
Total Bookmarks and Links
In Acrobat 5.0 when you ran the Optimize Space batch process, at the end it would give you a list of bookmarks, links, and destinations that were in each file.
I can't seem to get that same information in Acrobat 6.0. Is there a way to get a count of all bookmarks, links, and destinations in a document. It would be even better if I could batch it.
abrown@adobeforums.com Guest
-
Can I import the bookmarks page (links) from another PDF?
I have worked in Acrobat 7 pro a bookmarks page for all 125 pages of a PDF. But then I created a new PDF from the same In Design document after some... -
How to get Bookmarks & Links from a PDF file in c#
Hi, I want to get the Bookmarks & Links from a existing PDF file in c#. I will apprecite if any body can help me. The following is VB code to... -
Creating text links to existing bookmarks
I've created a PDF file from a supplied MS Word document. The Word doc included 4 headings that allowed the user to click and jump down the page... -
Broken links to bookmarks
I have a document that get updated monthly, when I delete and re-insert new pages I edit the links and save. about 50% of the time the link will work... -
Links/Bookmarks in 6.0 - setting destinations
I know it's been listed here before, but are there any methods or best practices for setting the destination of a link or bookmark when you don't... -
jean pierre huart #2
Re: Total Bookmarks and Links
Hi,
Concerning the links, you can create a batch using a javascript that will count all the links in your document:
Count the number of links in a document and report to the console.
var numLinks=0;
for ( var p = 0; p < this.numPages; p++) { var b = this.getPageBox("Crop", p); var l = this.getLinks(p, b); console.println("Number of Links on page " + p +" is " + l.length); numLinks += l.length; } console.println("Number of Links in Document is " + numLinks);
Maybe you will find new ideas for the other topics.
Ciao
Jean Pierre
jean pierre huart Guest



Reply With Quote

