How to print the bookmark list

I have adobe acrobat pro and need to print the bookmark list. Is there a way to get the list printed?


jennifer laboy


3 Answers

Voted Best Answer

You can use the following script, available in the JavaScript™ for Acrobat® API Reference:

function DumpBookmark(bkm, nLevel)
{
var s = "";
for (var i = 0; i < nLevel; i++) s += " ";
console.println(s + "+-" + bkm.name);
if (bkm.children != null)
for (var i = 0; i < bkm.children.length; i++)
DumpBookmark(bkm.children[i], nLevel + 1);
}
console.clear(); console.show();
console.println("Dumping all bookmarks in the document.");
DumpBookmark(this.bookmarkRoot, 0);

Copy above script, open the interactive console with Ctrl-J (Win) or Cmd-J (Mac), select all the lines in this code and Ctrl-Enter. You will get a list with all the bookmarks that you can copy and paste in a text editor to print it.

enter image description here

enter image description here


By Almir R V Santos   

There's a (free) Action available here: http://acrobatusers.com/actions-exchange/create-bookmark-report

I've also developed my own version of this tool (not free, but with some additional features), and it's available here: Acrobat -- Export Bookmarks Structure (to PDF/TXT), including page numbers

.


Visit my custom-made PDF scripts website: http://try67.blogspot.com
Contact me personally: try6767@gmail.com


Gilad D (try67)   

Rick updated his "X" action for this with an "XI" action.
See:

http://blogs.adobe.com/acrolaw/2013/09/eight-free-acrobat-xi-actions-for-legal-
pros/


Be well...


David Austin   


Please specify a reason: