Zachary Haber
My feedback
-
1 vote
An error occurred while saving the comment -
7 votes
Zachary Haber supported this idea ·
-
2 votes
An error occurred while saving the comment Zachary Haber commented
This would also be incredibly helpful with Redact annotations as well. There are times when simply Redacting a word will also end up wiping text above and below.
Zachary Haber supported this idea ·
-
2 votes
Zachary Haber supported this idea ·
-
4 votesUnder review · 1 comment · Acrobat for Windows and Mac » Other · Flag idea as inappropriate… · Admin →
Zachary Haber supported this idea ·
-
3 votes
Zachary Haber supported this idea ·
-
157 votes
Hi All,
We have provided a registry protected fix, some users confirmed that this worked for them.
Could you please try this at your end as well and let us know your feedback?
Kindly make sure you are on the latest DC build(20.012.20043) and then follow the steps from the attached word file: “Steps.docx”.Regards,
ArvindZachary Haber supported this idea ·
An error occurred while saving the comment Zachary Haber commented
I'm still seeing this issue today. For large documents with many comments (1000+), opening the comments tool freezes and crashes acrobat.
I tried the registry fix, and it's a definite improvement, but still not "quick" by any means, but it does mean Acrobat won't crash with basic interaction.
Is there any update on when a full fix will make it into Acrobat?
2022.001.20117 DC Continuous Release.
Windows 10 Pro 21H2 19044.1645
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();
});
}