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

Disable highlighted blue background on edible form fields

Community Beginner ,
Mar 14, 2022 Mar 14, 2022

Hi,

 

Is there a way to disable the blue background on a fillable PDF form? It doesn't appear on Acrobat pro, but when I send it appears on Acrobat reader.

 

Thank you!

TOPICS
PDF forms
2.9K
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 ,
Mar 14, 2022 Mar 14, 2022

Form settings under Preferences. It's per program and per user. 

David Creamer: Community Expert (ACI and ACE 1995-2023)
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 Beginner ,
Mar 14, 2022 Mar 14, 2022

 

Thank you.

Can you please elaborate on the form settings?

And if I disable it on my end, will users I'll send the file to might still experience that depends on their preferences?

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
Adobe Employee ,
Mar 14, 2022 Mar 14, 2022

Hi there

 

hope you are doing well and am sorry for the trouble.

 

Please go to edit (Win), Adobe Acrobat (Mac) > preferences > forms > uncheck ’ show border hover colour for fields’ > click OK and reboot the application.

 

Capture.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

Thanks

Amal

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 ,
Mar 14, 2022 Mar 14, 2022

No--it is up to each user to set their own preferences. 

David Creamer: Community Expert (ACI and ACE 1995-2023)
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 ,
Mar 14, 2022 Mar 14, 2022

You can disable it by embedding a script into your file, but it will also be disabled for all other files the user opens afterwards, so it might be a good idea to inform them of that change.

 

The code that does it is this:

 

app.runtimeHighlight = false;

 

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 Beginner ,
Mar 15, 2022 Mar 15, 2022

 

Thank you try67

 

It worked great on my desktop but I see that it doesn't when I open it on Chrome for example, and also on my mobile (I use Acrobat reader on my phone..).

 

Is there a way to fix that?

Or maybe, is there a way to at least change the highlight color, for example light grey or white?

 

Thanks a lot.

 

 

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 ,
Mar 15, 2022 Mar 15, 2022
LATEST

- No, it won't work in the mobile version of Reader, and is unlikely to work in the Chrome PDF plugin.

- You can change the highlight color using a script, yes, but again, it will affect all other files, too.

From personal experience I can tell you it's a very bad idea to do it without the user's consent.

To do it you can use this code (for example; read the documentation of the color object to learn how to define other colors):

 

app.runtimeHighlightColor = color.ltGray;

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