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....
//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?