delete all redactions
Since I work one copy I like to mark my redactions and when complete I save a copy to apply the redactions and then I remove all the redactions to have a clean copy. I may not want to remove all comments, just the redaction boxes
I do this so if I remove pages I don't have to do so on multiple copies and try to keep track of where I am.
t.
-
Aryn commented
This is what I'm looking for as well. Once we use the “Find Text & Redact” function and click on “mark whole words” for redactions, we’d like to have the ability to unredact them all in one fell swoop (if needed), but the option is not there.
-
Zachary Soare commented
You can also do this via the JavaScript API as an action or just in the console:
// ensure that all annots are synced up
this.syncAnnotScan();
// Get all the annots in the document
const annots = this.getAnnots();
if (annots) {
// If there are annots, filter out the Redact types, and destroy them
annots
.filter((annot) => annot.type === "Redact")
.forEach(function (redact) {
redact.destroy();
});
} -
AdminAmboo Srivastava (Admin, Adobe) commented
Hello,
Thanks for sharing the feedback. From what I understand from your post, you would like to have an option to remove all redactions in one go from the original PDF? Please confirm.
Thanks,
-amboo