Making names used to create comments anonymous

Ask a Question related to Adobe Acrobat Macintosh, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default 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

  8. #7

    Default Re: Making names used to create comments anonymous

    You can try Skim, but Acrobat will not see the comments.
    sprale@adobeforums.com Guest

  9. #8

    Default 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.pdf
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139