cancel
Showing results for 
Search instead for 
Did you mean: 

Shading value section

Former Member
0 Kudos

Hi,

On the adobe form we have several input fields and drop down boxes. To shade them if it is display only we are using the code

this.fillColor = 255, 255, 255.

The problem is user does not want the caption part to be shaded, only the value part has to be shaded. Do you know any way to achieve this.

Thanks,

Aravind

Accepted Solutions (1)

Accepted Solutions (1)

OttoGold
Active Contributor
0 Kudos

example: TextField1.border.edge.color.value = "255,0,0";

xfa.resolveNode("Subform1.Name.ui.#textEdit.border.fill.color").value = "153,204,255";

come from here: http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_ba...

Otto

Former Member
0 Kudos

Thank you very much!

Answers (1)

Answers (1)

OttoGold
Active Contributor
0 Kudos

You can choose if you want to work with the field, the caption or both. There is a little arrow on the top right of the box. Otto

Former Member
0 Kudos

Hi Otto,

Here I' am trying to provide shading using script. I' am trying to provide or remove shading for a field based on certain

user actions on the form. So I' am using 'this.fillColor' code to do that, but caption is coming shaded.

Let me know if you know any solution for this.

Thanks,

Aravind