Ask a Question related to Adobe Acrobat Macintosh, Design and Development.
-
Prepress_Projects@adobeforums.com #1
Making names used to create comments anonymous
Is there any way to make user names in comments anonymous?
We receive several hundred PDFs of academic/medical/science research each year, many of which have previously applied comments embedded.
We are looking for a quick way of changing the user name in the comments to something like 'Anonymous'.
The PDFs are subsequently sent to other researchers for blind peer review, and it is important that the PDFs contain no indication of who authored or commented on the document previously.
We know that we can change names in comments one by one using Properties. What we want is a global way of changing/replacing the user names used to create previously applied comments and sticky notes.
Using Acrobat 9 on Mac OS X 10.5.4.
Prepress_Projects@adobeforums.com Guest
-
making comments permanent
I'm trying to sign some pdf documents with my tablet. I'm using the pen tool in acrobat, signing it, saving and then when it opens it preview the... -
Disable Options>Import Comments in Comments Pane
A customer asked me to replace the logic of the Comments>Import Comments menu item. I can easily find and replace this menu item with the name... -
Is it possible to create a custom header/footer - not with column names but with html
I want to know if it is possible to create my own header and footer which contains arbitrary text/html items in a datagrid . Look at the included... -
Create Dynamic Input Names or Input Fields in Asp
I have a little code to add multiple items to a shopping cart based page. This code works perfect, but it adds all of the info to the same input... -
Machine names v. User names
Good Morning... Unfortunately one of our mainframe processes require a local machine name that is identical to the local user account name. For... -
Michael Kazlow #2
Re: Making names used to create comments anonymous
I know of no way to make comments anonymous without going throught each
one. The best way to handle this is to ask each commenter to use an name
that you can associate with them before the commenting process has begun.
Mike
Michael Kazlow Guest
-
George_Johnson@adobeforums.com #3
Re: Making names used to create comments anonymous
You can use JavaScript. The JavaScript would loop through the collection of the relevant type of annotations and modify the "author" property of each. You could do this in a batch sequence, or if you just want to do this to a single document at a time, you could set up a custom menu item or custom toolbar item.
George
George_Johnson@adobeforums.com Guest
-
marc_legros@adobeforums.com #4
Re: Making names used to create comments anonymous
I have the same problem. Adobe phone support was helpless and I don't know Java.
I am bound to suppress my identity manually in the 120+ comments on this scientific paper I am supposed to peer review.
I'll try another reader next time (I bought this version 8 of Adobe Acrobat Pro!!! what a waste)
marc_legros@adobeforums.com Guest
-
Sabian_Zildjian@adobeforums.com #5
Re: Making names used to create comments anonymous
You will want to use something like this:
//Begin code
//Change the author property in an annotation:
// Assumes that the author property is the text "PrePress Projects"
var myAnnots = this.getAnnots();
for (i = 0; i < myAnnots.length; i++) {if (myAnnots[i].author.match(/PrePress Projects/)) myAnnots[i].author = myAnnots[i].author.replace(/PrePress Projects/, "anonymous");}
//End code
Sabian
Sabian_Zildjian@adobeforums.com Guest
-
George_Johnson@adobeforums.com #6
Re: Making names used to create comments anonymous
To be safe, add a call to the syncAnnotScan() method before the rest of the code above. You can run this code from the JavaScript console as well if you don't want to bother with a batch sequence, menu item, or toolbar button.
George
George_Johnson@adobeforums.com Guest
-
sprale@adobeforums.com #7
Re: Making names used to create comments anonymous
You can try Skim, but Acrobat will not see the comments.
sprale@adobeforums.com Guest
-
Unregistered #8
Re: Making names used to create comments anonymous
You can request to your reviewers to follow the instructions described in this link:
http://www.botany.org/ajb/Annotating_Manuscripts_Anonymously.pdfUnregistered Guest



Reply With Quote

