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

Where did the "Highlight Existing Fields" button go (Acrobat DC)?

Community Beginner ,
Apr 14, 2015 Apr 14, 2015

Where did the "Highlight Existing Fields" button go (Acrobat DC)?

TOPICS
PDF forms
57.5K
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
1 ACCEPTED SOLUTION
LEGEND ,
Apr 14, 2015 Apr 14, 2015

Adobe removed the forms message bar, which is where the field highlighting toggle button was. It turns out that the following user preference works as a toggle as well despite the confusing description:

Edit > Preferences > Forms > Highlight Color > Show border hover color for fields

You can also toggle it with the following JavaScript:

app.runtimeHighlight = !app.runtimeHighlight;

You can add this to a custom menu item or toolbar button to provide an easier means to toggle it.

View solution in original post

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
LEGEND ,
Apr 14, 2015 Apr 14, 2015

Adobe removed the forms message bar, which is where the field highlighting toggle button was. It turns out that the following user preference works as a toggle as well despite the confusing description:

Edit > Preferences > Forms > Highlight Color > Show border hover color for fields

You can also toggle it with the following JavaScript:

app.runtimeHighlight = !app.runtimeHighlight;

You can add this to a custom menu item or toolbar button to provide an easier means to toggle it.

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 ,
Apr 14, 2015 Apr 14, 2015

Thank you for your quick response. That's a bummer. I would like my customers to be able to easily see which fields they can fill, then toggle the highlight off so they can see what it looks like without it.

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
LEGEND ,
Apr 14, 2015 Apr 14, 2015

You can add a button (or link, bookmark) to the form that runs the JavaScript code I posted earlier. You can also add a custom toolbar button to the form that does the same.

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 ,
Apr 14, 2015 Apr 14, 2015

I will look into that. Thank you!

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
Explorer ,
Sep 05, 2017 Sep 05, 2017

The form Javascript does work (highlights fields), but the folder-level/toolbar/menu option does not trigger after opening a document until clicking on a field (which is the reason for highlighting)

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 24, 2016 Aug 24, 2016

You can add a JavaScript that will highlight the form fields when your customers open your PDF, no matter what your customers preference settings happen to be.

Create a Document JavaScript as follows (the variable 'var' can be named anything you like):

var vh = app.runtimeHighlight ;
app
.runtimeHighlight = true ;

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
Advocate ,
Jul 05, 2015 Jul 05, 2015

Bad interface decision on Adobe's part.

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 08, 2024 Mar 08, 2024
LATEST

I'm replying to this from 9 years into the future. 

1) you are absolutely right. 2) you should see what all they've done since!

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 ,
Mar 22, 2016 Mar 22, 2016

Right click on toolbar

select Customize Quick Tools...

under the Prepare Form dropdown, select More Form Options

click located to the right to add it to your custom menu

hit save

Now in your custom menu bar, click on the briefcase icon, and you can toggle Highlight Existing Fields

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
Engaged ,
Mar 27, 2017 Mar 27, 2017

Edit 1: to add more details after verification.

Edit 2: correction...


Please check this form:

http://www.cic.gc.ca/english/pdf/kits/forms/IMM5257E.pdf

Why the button "Highlight Existing Fields" is shown? How to make did they make it visible?

When I create a form using Adobe LiveCycle Designer, that button won't show? Why? but the highlight will work just fine?

So, the main question here is how to show that button on Adobe LiveCycle Forms which are Reader Enabled and rendered from the server?

Appreciate your help to clarify.

Tarek

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 ,
Oct 05, 2023 Oct 05, 2023

This is a serious accessibility issue.  If I can't see what field has focus I can click around with my mouse but Keyboard only users can't see where the form fields are even when they are "in focus".  They should not have to go to Preferences to turn this on and we should not have to add a Javascript to accomplish this --which some may consider a security risk and not allow!  What ARE you thinking Adobe?

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