Total Bookmarks and Links

Ask a Question related to Adobe Acrobat Windows, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139