We have a team of reviewers that individually make comments on the document being reviewed. However, the single output from the review team requires an overall review to deconflict and consolidate into a team output. Is it possible to replace every individual's name with the corporate review name such that the individual’s identity is not revealed in the singleton team PDF or Word tracked change output?
1) Use File > Save an Archive Copy to break the link between the PDF and the Shared Review, so the comments are unlocked.2) Run a JavaScript which updates the ".author" property of every comment, as below (you can put the code in a custom menu item or an Action if you do it often)
this.syncAnnotScan();
var annots = this.getAnnots();
for (var i = 0; i < annots.length; i++) annots[i].author = "John Doe";