Skip to main content
Participant
August 15, 2023
Question

When I add comments in Acrobat, after I press enter the comment only displays at 50% opacity

  • August 15, 2023
  • 1 reply
  • 354 views

When I add comments in Acrobat, after I press enter the comment only displays at 50% opacity

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
August 15, 2023

What type of comments?

Participant
August 15, 2023

Text comments using the comments bar

try67
Community Expert
Community Expert
August 15, 2023

You can do it by running this code from the JS Console (or a button field):

 

this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
	for (var i in annots) {
		if (annots[i].type=="FreeText")	annots[i].opacity=1;
	}
}

 

After running it, right-click one of the comments, go to Properties and tick the "Make Properties Default" box, and any new comments you add after that will have no transparency, either.