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
anonymous comments possible?
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
-
Mattes57
- User
- Posts: 81
- Joined: Tue Aug 12, 2008 4:10 pm
Re: anonymous comments possible?
Yes, it is possible.
Just open the "properties" of a selected comment and remove the author information.
Just open the "properties" of a selected comment and remove the author information.
-
John - Tracker Supp
- Site Admin
- Posts: 5225
- Joined: Tue Jun 29, 2004 10:34 am
Re: anonymous comments possible?
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
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?
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.
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?
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.
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.
-
Vasyl - PDF-XChange
- Site Admin
- Posts: 2476
- Joined: Thu Jun 30, 2005 4:11 pm
Re: anonymous comments possible?
Hi, guys
For remove/change user info for all comments in the opened document you may use special Java Script:
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.
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
}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.
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?
Whow! That's cool.
Is the JS-API yet fully supported in PDF-XChange-Viewer?
Is the JS-API yet fully supported in PDF-XChange-Viewer?
-
Vasyl - PDF-XChange
- Site Admin
- Posts: 2476
- Joined: Thu Jun 30, 2005 4:11 pm
Re: anonymous comments possible?
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.
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.
Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.