anonymous comments possible?

The PDF-XChange Viewer for End Users
+++ FREE +++

Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Paul - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange

Borriss
User
Posts: 2
Joined: Tue Dec 22, 2009 10:38 am

anonymous comments possible?

Post by Borriss »

Is it possible to delete any user information from already existing comments? As default, the user name is included in each comment or mark-up, but for some review processes it would be desirable to delete all private information.

Many thanks!

Borriss
Mattes57
User
Posts: 81
Joined: Tue Aug 12, 2008 4:10 pm

Re: anonymous comments possible?

Post by Mattes57 »

Yes, it is possible.
Just open the "properties" of a selected comment and remove the author information.
User avatar
John - Tracker Supp
Site Admin
Posts: 5225
Joined: Tue Jun 29, 2004 10:34 am

Re: anonymous comments possible?

Post by John - Tracker Supp »

Thanks Mattes57 - appreciate you stepping in :)
If posting files to this forum - you must archive the files to a ZIP, RAR or 7z file or they will not be uploaded - thank you.

Best regards
Tracker Support
http://www.tracker-software.com
Borriss
User
Posts: 2
Joined: Tue Dec 22, 2009 10:38 am

Re: anonymous comments possible?

Post by Borriss »

Thanks for the quick responses! This solution was however not what I was looking for because it gets very inconvenient with numerous comments each of which needs to be processed seperately. I tried it with standard formats where I removed my user name, however the name is still included in every new comment.

A way to save it free from user information like in some office software would be really helpful.
dodemoii
User
Posts: 11
Joined: Mon May 04, 2009 9:03 am

Re: anonymous comments possible?

Post by dodemoii »

Menu->Edit->Preference->Identity
You cannot remove LoinName information, and if you remove Name information,
the login name is included in every new comment.
If you input Name information,example "A", the name "A" will be included
instead of the LoginName in comment.
I'm afraid that you can input a space, blanck, instead of "A", and Author name will be invisible.
User avatar
Vasyl - PDF-XChange
Site Admin
Posts: 2476
Joined: Thu Jun 30, 2005 4:11 pm

Re: anonymous comments possible?

Post by Vasyl - PDF-XChange »

Hi, guys
For remove/change user info for all comments in the opened document you may use special Java Script:

Code: Select all

var annots = this.getAnnots();
for (i = 0; i < annots.length; i++)
{
    var a = annots[i];
    a.author = ""; // or other string between quotes
}
For execute of any script you should display Java-Script Console by Ctrl+J combination and place text of script into top edit box and click 'Run' button.
See more: http://www.adobe.com/devnet/acrobat/pdf ... erence.pdf.

Cheers.
PDF-XChange Co. LTD (Project Developer)

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
Mattes57
User
Posts: 81
Joined: Tue Aug 12, 2008 4:10 pm

Re: anonymous comments possible?

Post by Mattes57 »

Whow! That's cool.
Is the JS-API yet fully supported in PDF-XChange-Viewer?
User avatar
Vasyl - PDF-XChange
Site Admin
Posts: 2476
Joined: Thu Jun 30, 2005 4:11 pm

Re: anonymous comments possible?

Post by Vasyl - PDF-XChange »

Hi, Mattes57.

We support Adobe's JS API in most cases.
For details of specific commands you may look in our PDF-XChange Viewer ActiveX SDK Help('Reference/JavaScript Support').

Cheers.
PDF-XChange Co. LTD (Project Developer)

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.