I'm not yelling I swear, in caps so tech support knows what to look for :-)
I need to make a checkbox check mark blue. I can change everything else, text fields, text, images, buttons, etc. just not the actual check mark. Please help. :-)
I found a way to do this by using some acroform script in the xfa form. You could put this on the enter event of the checkbox. Note that it is Javascript.
//get the doc object
var oDoc = event.target;
//now get the acroform field
var f = oDoc.getField("form1[0].Page1[0].CheckBox1[0]");