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

Editing Authors in comments

New Here ,
Nov 17, 2020 Nov 17, 2020

Copy link to clipboard

Copied

Hi

 

I am trying to change the Author field in all existing Responses to comments for a specific author.  There are over 200 that need to be changed and editing each one at a time is very time consuming.  

 

I can change the Author field on the Comment by selecting all the comments and right click to change the Author under the Genreal Tab but I cannot select the responses to comments in this way.

Views

708

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Nov 17, 2020 Nov 17, 2020

You can do this with a script. The following script will change _ALL_ authors to a new author:

 

 this.syncAnnotScan();
 var annots = this.getAnnots();
 for (var i = 0; i < annots.length; i++) {
 	annots[i].author = "Dummy";
 }

 

If you wan to just change the comments by a specific author, you need to first check for that string:

 

 this.syncAnnotScan();
 var annots = this.getAnnots();
 for (var i = 0; i < annots.length; i++) {
 	if (annots[i].author == "theUser") {
 		annots[i].author = "Dummy
...

Votes

Translate

Translate
Adobe Employee ,
Nov 17, 2020 Nov 17, 2020

Copy link to clipboard

Copied

Hi Carolynn, 

 

Could you please let us know the name of the Adobe app you are using to perform this task? 

Votes

Translate

Translate

Report

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
New Here ,
Nov 17, 2020 Nov 17, 2020

Copy link to clipboard

Copied

Adobe Acrobat Pro

Votes

Translate

Translate

Report

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 ,
Nov 17, 2020 Nov 17, 2020

Copy link to clipboard

Copied

Thank you!

 

I am moving this thread to the correct community 'Acrobat' experts here will be able to help you better.

Votes

Translate

Translate

Report

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 ,
Nov 17, 2020 Nov 17, 2020

Copy link to clipboard

Copied

You can do this with a script. The following script will change _ALL_ authors to a new author:

 

 this.syncAnnotScan();
 var annots = this.getAnnots();
 for (var i = 0; i < annots.length; i++) {
 	annots[i].author = "Dummy";
 }

 

If you wan to just change the comments by a specific author, you need to first check for that string:

 

 this.syncAnnotScan();
 var annots = this.getAnnots();
 for (var i = 0; i < annots.length; i++) {
 	if (annots[i].author == "theUser") {
 		annots[i].author = "Dummy";
	}
 }

 

You can run this either from the JavaScript console, or you can create a custom command (or an action with the Action Wizard) to run this code. 

Votes

Translate

Translate

Report

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 ,
Nov 17, 2020 Nov 17, 2020

Copy link to clipboard

Copied

LATEST

You can use this free tool I've developed to do it in a matter of seconds:

https://www.try67.com/tool/acrobat-reader-anonymize-comments-free

 

Votes

Translate

Translate

Report

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