Copy link to clipboard
Copied
Looking for guidance to create a tool or action to enable the batch processing of PDF files to remove bookmarks from them. Is there a built solution or do I need to look to WinTask or similar for a solution?
Copy link to clipboard
Copied
If you have Acrobat Professional, then an Action (batch process) will do this.
Use this script, it removes all bookmarks from a document:
this.bookmarkRoot.remove();
Use the Acrobat JavaScript Reference early and often
Copy link to clipboard
Copied
If you have Acrobat Professional, then an Action (batch process) will do this.
Use this script, it removes all bookmarks from a document:
this.bookmarkRoot.remove();
Use the Acrobat JavaScript Reference early and often
Copy link to clipboard
Copied
Worked awesome, thanks!
Copy link to clipboard
Copied
Thank you for the solution. I want to add the path and detalis to do this;
Action wizard => new action => in the right side of the new window; locate the folder which we want to remove batch of pdfs =>
in the left pane of the new window; at the bottom; more tools =>
select execute javascript option =>
add to right hand pane this js script =>
specify settings =>
add "this.bookmarkRoot.remove(); " code =>
unclick prompt user =>
in the left pane add save option =>
press save =>
give a name this batch action =>
find your action in the actions menu =>
click that action once and wait =>
then click start => tadaaaa !!!

