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

Can I set the eform that let adobe reader not highlight the field?

New Here ,
Apr 27, 2016 Apr 27, 2016

My Question is when I finish the eform on Acrobat. Can any set up make the adobe reader not highlight the field?

TOPICS
Acrobat SDK and JavaScript , Windows
266
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 27, 2016 Apr 27, 2016
LATEST

It is possible with JavaScript to control whether field highlighting is active, but it's considered bad form to alter a user's preference setting without letting them know or at least attempting to restore the settings when the controlling document closed. Here is some code you can use in a document-level JavaScript that executes when the document is opened:

var bRTH = app.runtimeHighlight;  // Store the current field highlighting setting

app.runtimeHighlight = false;  // Turn off field highlighting

Then, in the Document Will Close event, you can restore the setting to the original:

// Restore the field highlighting setting

app.runtimeHighlight = bRTH;

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