Copy link to clipboard
Copied
Hi guys, is there a way to delete or define the default blue background color for form fields as dropdowns etc. in Acrobat?
Thanks in advance for your help!
Do you mean using a script? Yes, you can disable it like this:
app.runtimeHighlight = false;
Or change the color like this (for example):
app.runtimeHighlightColor = color.green;
Copy link to clipboard
Copied
Do you mean using a script? Yes, you can disable it like this:
app.runtimeHighlight = false;
Or change the color like this (for example):
app.runtimeHighlightColor = color.green;
Copy link to clipboard
Copied
You're an absolute genius, thank you so much for your support!!!