Expand my Community achievements bar.

HOW TO MAKE A CHECK MARK IN A CHECK BOX BLUE :-)

Avatar

Former Community Member
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. :-)



thanks
2 Replies

Avatar

Former Community Member
I do not think you can change the colour of the checkmark char.

Avatar

Former Community Member
I found a way ....



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]");

//set the color of the check char to red

f.textColor = color.blue;



Let me know if it works for you.