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

Field properties: Duplicate fields

New Here ,
Dec 18, 2019 Dec 18, 2019

Copy link to clipboard

Copied

I have an Acrobat Form (created in Acrobat 9) with duplicate fields across several pages.

In some circumstances, I need to hide a duplicate on one page but leave it visible on others.

I can get a script to change the display property from visisble to hidden or vice versa, but it affects all fields of a given name, regardless of locatation.

Is there a way i can change the properties of a duplicate field on one page but not others?

Views

336

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 ,
Dec 18, 2019 Dec 18, 2019

Copy link to clipboard

Copied

LATEST

Yes. Let's say the field is called Text1 and has two widgets. You can use this code to make the first one visible and the second one hidden:

 

this.getField("Text1.0").display=display.visible;

this.getField("Text1.1").display=display.hidden;

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