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

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

New Here ,
Aug 15, 2023 Aug 15, 2023

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

TOPICS
Edit and convert PDFs , PDF
294
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 ,
Aug 15, 2023 Aug 15, 2023

What type of comments?

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 ,
Aug 15, 2023 Aug 15, 2023

Text comments using the comments bar

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 ,
Aug 15, 2023 Aug 15, 2023
LATEST

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.

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