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

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

Community Beginner ,
Apr 14, 2015 Apr 14, 2015

Copy link to clipboard

Copied

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

TOPICS
PDF forms

Views

51.2K

Translate

Translate

Report

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

correct answers 1 Correct answer

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.

Votes

Translate

Translate
LEGEND ,
Apr 14, 2015 Apr 14, 2015

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

I will look into that. Thank you!

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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)

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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 ;

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Bad interface decision on Adobe's part.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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!

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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?

Votes

Translate

Translate

Report

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