Skip to main content
M.Hasanin
Inspiring
November 26, 2017
Answered

About Hidding Comment by JavaScript

  • November 26, 2017
  • 1 reply
  • 906 views

Hi,

I'm using comment as a on fly help system for my forms, but my question is are there any way to hide my comments (All of them) so i can make a button for the user to hide or show the comments , thanks in advance

This topic has been closed for replies.
Correct answer Thom Parker

Comments are a type of PDF annotation, and all annotation objects have a hidden property. So you can hide and show any annotation, as long as you know it's name.

Here's the JS reference entry for the Annot Object

Acrobat DC SDK Documentation

The annot name is created automatically. It is not accessible from the Acrobat UI. You can only get it with JavaScript. I would suggest using the "this.selectedAnnots" property to reset the names of your help annots, with this process.

1. Select a comment object on the PDF page

2. Run this code in the console window while the comment it selected.

this.selectedAnnots[0].name = "MyHelpName";

Then you can use the name to show the comment.

this.getAnnot("MyHelpName").hidden = false;

1 reply

Thom Parker
Community Expert
Thom ParkerCommunity ExpertCorrect answer
Community Expert
November 26, 2017

Comments are a type of PDF annotation, and all annotation objects have a hidden property. So you can hide and show any annotation, as long as you know it's name.

Here's the JS reference entry for the Annot Object

Acrobat DC SDK Documentation

The annot name is created automatically. It is not accessible from the Acrobat UI. You can only get it with JavaScript. I would suggest using the "this.selectedAnnots" property to reset the names of your help annots, with this process.

1. Select a comment object on the PDF page

2. Run this code in the console window while the comment it selected.

this.selectedAnnots[0].name = "MyHelpName";

Then you can use the name to show the comment.

this.getAnnot("MyHelpName").hidden = false;

Thom Parker - Software Developer at PDFScriptingUse the Acrobat JavaScript Reference early and often
M.Hasanin
M.HasaninAuthor
Inspiring
November 26, 2017

Thank you as much as i can

Mohammad Hasanin