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

Labeling Fillable Fields

New Here ,
May 11, 2022 May 11, 2022

Copy link to clipboard

Copied

I would like all the fillable fields in my document to be filled in with a light color and labeled with the title of what information needs to be filled into certain spaces. 

Is there a way to label a fillable field so that it is somewhat transparent? That way the person filling out the form knows what to type in that slot? 

I am working with Adobe Acrobat Pro DC (32-bit).

TOPICS
Create PDFs , Edit and convert PDFs , How to , PDF forms

Views

656

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 ,
May 11, 2022 May 11, 2022

Copy link to clipboard

Copied

Yes, this is possible. You can use also the tooltips.

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 ,
May 12, 2022 May 12, 2022

Copy link to clipboard

Copied

It's possible, but requires using a script. However, it won't work for fields that have a Format setting, such as Date fields. I also recommend using tooltips for this purpose.

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 ,
May 12, 2022 May 12, 2022

Copy link to clipboard

Copied

Place the "Help" text you want displayed in the field tooltip, then place this script into the Custom Format 

 

if(event.value == event.defaultValue)

{

    event.value = event.userName;

    event.target.fontColor = ["RGB",.75,.75,.75]; // light grey

}

else

    event.target.fontColor = color.black;

 

 

 

 

 

 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

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 ,
May 12, 2022 May 12, 2022

Copy link to clipboard

Copied

LATEST

However, be aware that this trick will only work on PDF viewers that support JavaScript. 

 

 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

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