Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Hide Date in Comments

New Here ,
Jul 24, 2024 Jul 24, 2024

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
467
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 24, 2024 Jul 24, 2024

You can't hide it. You can set it to another date, or to an invalid value (such as an empty string).

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 24, 2024 Jul 24, 2024

Thank you. How can I set it to another date or to an invalid value?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 25, 2024 Jul 25, 2024
LATEST

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();

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines