Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
1

How to Delete Comments by One User Only?

Explorer ,
Jan 20, 2022 Jan 20, 2022

Two people have added highlights, comments, and sticky notes to a PDF. There are 1,323 comments in the document, 90% of which were entered by "Jack." I want to remove Jack's comments, but the "Delete" function is unavailable for their marks. How can I clean up this document so that only the other person's highlights and comments remain?

TOPICS
Edit and convert PDFs , How to
1.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 20, 2022 Jan 20, 2022

Are Jack's comments locked? 

 

Please post a screenshot of one of his comments as well as the menu where you are trying to delete it from.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 24, 2022 Jan 24, 2022
LATEST

Hi There,

The comments might be locked/read only. Could you please run the following snippet in JS debugger and then try deleting that user's comments?

 

this.syncAnnotScan();

var annots = this.getAnnots();

for(var i=0; i<annots.length; i++){

      annots[i].readOnly=false;

      annots[i].lock=false;

}

 

For running the JS degbugger, you may need to “Enable JavaScript” and “Enable Interactive Console” in Preferences=>JavaScript.

 

Regards,

Arvind

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines