These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

changing the color of a caption for the fields located on Master pages

oksana77
Registered: Apr 24 2009
Posts: 89

I am using a recursive function to loop through the form and change the caption color from blue to black on pre-print.

Here is what I use:
oNode.caption.font.fill.color.value = "0,0,0";

I have included a messageBox and it tells me that the caption color is black after the function is invoked, but it is still blue....

My Product Information:
LiveCycle Designer, Windows
oksana77
Registered: Apr 24 2009
Posts: 89
Here is a note. I also hide one (last) page on pre-print. If I don't hide it, fields do change to black!

//if(form.Masters.page3.Print.rawValue == 1)
// form.page3.presence = "visible";
//else
// form.page3.presence = "hidden";

Scripts.changeFont(this, "black");

Any idea why the two don't work together?