Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

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

Avatar

Not applicable
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

Level 10
I do not think you can change the colour of the checkmark char.

Avatar

Level 10
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.