0
Hide Date in Comments
New Here
,
/t5/acrobat-discussions/hide-date-in-comments/td-p/14758188
Jul 24, 2024
Jul 24, 2024
Copy link to clipboard
Copied
Hi there,
is it possible to hide or change the date of a comment in Adobe Acrobat?
Thank you,
Carolin
TOPICS
Edit and convert PDFs
,
PDF
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-discussions/hide-date-in-comments/m-p/14758225#M472127
Jul 24, 2024
Jul 24, 2024
Copy link to clipboard
Copied
You can't hide it. You can set it to another date, or to an invalid value (such as an empty string).
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Carolinska91
AUTHOR
New Here
,
/t5/acrobat-discussions/hide-date-in-comments/m-p/14758713#M472158
Jul 24, 2024
Jul 24, 2024
Copy link to clipboard
Copied
Thank you. How can I set it to another date or to an invalid value?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-discussions/hide-date-in-comments/m-p/14759030#M472176
Jul 25, 2024
Jul 25, 2024
Copy link to clipboard
Copied
Using a script. For example, this code will set all comments in the file to an Invalid Date:
this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
for (var i in annots) {
var annot = annots[i];
annot.creationDate = "";
annot.modDate = "";
}
}
If you want to set them to the current time, for example, replace the two main lines with this:
annot.creationDate = new Date();
annot.modDate = new Date();
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

