Link in Zwischenablage kopieren
Kopiert
I would like to add comments on a PDF for team use and proofing.
When the PDF is final, I would like the option to delete all comments on all pages and save as a final version for client, without the client seeing any of the comments.
Link in Zwischenablage kopieren
Kopiert
Not with one click but with just a few clicks: When you look at the list of comments, go to the last one and select it, then scroll up to the first one, hold down the shift key and select the first comment. This should select all comments. You can now delete them by right-clicking on one and selecting "Delete" from the menu. This should also work by selecting the first comment first, holding down the shift key and selecting the last comment, but I've had better luck with the process I described first.
You can also use the "PDF Optimizer" by saving the document as an optimized PDF (only possible in Acrobat Pro). Then from the different options you can select, make sure that only "Discard User Data>Discard all comments, form and multimedia" is selected (otherwise, more information may be removed from your document).
Link in Zwischenablage kopieren
Kopiert
Not with one click but with just a few clicks: When you look at the list of comments, go to the last one and select it, then scroll up to the first one, hold down the shift key and select the first comment. This should select all comments. You can now delete them by right-clicking on one and selecting "Delete" from the menu. This should also work by selecting the first comment first, holding down the shift key and selecting the last comment, but I've had better luck with the process I described first.
You can also use the "PDF Optimizer" by saving the document as an optimized PDF (only possible in Acrobat Pro). Then from the different options you can select, make sure that only "Discard User Data>Discard all comments, form and multimedia" is selected (otherwise, more information may be removed from your document).
Link in Zwischenablage kopieren
Kopiert
Thank you sir!
Link in Zwischenablage kopieren
Kopiert
Yes this helped! Thank you!
Link in Zwischenablage kopieren
Kopiert
Bless you!
Link in Zwischenablage kopieren
Kopiert
thank you
Link in Zwischenablage kopieren
Kopiert
And to reduce this process by a click, select any of the comments in the Comments panel, use Select All (Control +A / Command +A), and then click delete, or even the Delete Key on your keyboard.
Easier than writing a script!
Link in Zwischenablage kopieren
Kopiert
Select All doesn't work. You have to select the range using the shift key.
Link in Zwischenablage kopieren
Kopiert
Any reason this function might not work? My document is new and unlocked.
Link in Zwischenablage kopieren
Kopiert
THANK YOU SO MUCH!!!!!
Link in Zwischenablage kopieren
Kopiert
Thank you sir, you just made my life easier.
Link in Zwischenablage kopieren
Kopiert
This did not work at all for me.
Link in Zwischenablage kopieren
Kopiert
When I try this Acrobate crashes.
Link in Zwischenablage kopieren
Kopiert
It can also be done using a single click by creating a script that does it, assigning it to a toolbar button and then adding that button to the toolbar.
Link in Zwischenablage kopieren
Kopiert
How can I create the script?
Link in Zwischenablage kopieren
Kopiert
That is a bit more complicated, especially the part where it adds a new menu item. It also requires installing the script file into a specific folder on the local machine.
Link in Zwischenablage kopieren
Kopiert
Why not use the script as a custom command and add it to the Quick Tools?
Link in Zwischenablage kopieren
Kopiert
Sure, that's possible too... The basic code is not that complicated:
this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
for (var i=annots.length-1; i>=0; i--) {
annots.destroy();
}
}
Link in Zwischenablage kopieren
Kopiert
Thank you!
Link in Zwischenablage kopieren
Kopiert
I really like this solution - thank you. I'm just looking into making the button stay on the toolbar for all of my documents now.
Thank you
Link in Zwischenablage kopieren
Kopiert
This does not work on the ipad app only desktop is there a trick to make it work on ipad app?
Link in Zwischenablage kopieren
Kopiert
You can add the action button with the script in your PDF.
It works in my mobile app but I use Android.
You need to do this using Adobe Acrobat Pro DC in your desktop, but don't create an action, create an action button and run it directly from within the document in your mobile app.
Link in Zwischenablage kopieren
Kopiert
If interested, here is an interesting document that was shared in another thread:
Link in Zwischenablage kopieren
Kopiert
This code doesn't seem right, I think you'd need to still delete one by one:
this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
for (var i=annots.length-1; i>=0; i--) {
var annot = annots[i]
annot.destroy();
}
}
Link in Zwischenablage kopieren
Kopiert
Are you basing that on anything, or it's just a hunch? Because this code will delete all the comments in the file, possibly unless they are set as read-only or locked.
Weitere Inspirationen, Events und Ressourcen finden Sie in der neuen Adobe Community
Jetzt ansehen