Copy link to clipboard
Copied
I've recently started using Adobe Pro and when I use the text comment feature, the text becomes so transparent that it is barely legible. I found a way to change the opacity to 100% by clicking Ctrl J, then inserting "this.nselectedAnnots[0].opacity = 1;" in JavaScript debugger, Ctrl + enter to execute the command. Doing this gives me 100% opacity. I then go back to my text comment, right click and select Properties, then select "make properties default", but it still only works for that document. It does not change the default like it leads you to believe. I have to do this to every document and it is maddening. This issue is a deal breaker for me, but I'd like to inquire about a permanent fix for this issue before I make the decision to switch to another brand of software. Does anyone have a permanent fix?
Copy link to clipboard
Copied
Hi @tammy_8916,
Hope you are doing well. Thanks for writing in!
If you are still looking for a solution, here's my comments to it:
While Acrobat doesn’t allow you to permanently set the opacity for all documents via the standard user interface, you can create a custom JavaScript that runs automatically when you open Acrobat. This script could set the opacity for annotations globally.
Ctrl + K
).
var annots = this.getAnnots();
if (annots) {
for (var i = 0; i < annots.length; i++) {
if (annots[i].type === 'Text') {
annots[i].opacity = 1; // Sets opacity to 100%
}
}
}
Ctrl + D
or go to File > Properties), go to the Actions tab.
Here’s how you can set up a startup JavaScript in Acrobat:
Ctrl + K
).
Hope this helps.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now