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

fillable fields aren't highlighted

New Here ,
Sep 01, 2016 Sep 01, 2016

Why don't my fillable fields show as highlighted any more? 

TOPICS
Acrobat SDK and JavaScript , Windows
14.4K
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

correct answers 1 Correct answer

LEGEND , Sep 01, 2016 Sep 01, 2016

Acrobat/Reader DC don't include the Highlight Existing Fields button in the document message bar as previous versions did, but you can turn field highlighting on by selecting the following user preference: Edit > Preferences > Forms > Highlight Color > Show border hover color for fields

This is used to control field highlighting, despite the incomplete description.

Translate
LEGEND ,
Sep 01, 2016 Sep 01, 2016

Acrobat/Reader DC don't include the Highlight Existing Fields button in the document message bar as previous versions did, but you can turn field highlighting on by selecting the following user preference: Edit > Preferences > Forms > Highlight Color > Show border hover color for fields

This is used to control field highlighting, despite the incomplete description.

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 menu preference is unreliable. If you open a Reader-enabled XFA form and then toggle the option,  the fields will stay highlighted/hidden until modified.

Happens on Windows 10.

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 ,
Nov 07, 2017 Nov 07, 2017
LATEST

If you're into batch script you can add a checkbox menu to toggle it from the menu. Set app.runtimeHighlight to true, like

app.addMenuItem( {cName:"menuToggle", cUser: "&Toggle highlight", cParent:

    "File", cExec:"app.runtimeHighlight=!app.runtimeHighlight;", 

    cMarked:"event.rc=app.runtimeHighlight",    nPos: 8});

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