Answered
Hello, our City Fire Department has a daily "runsheet" that tells each fire fighter what apparatus they are assigned to each start of the shift. What I'm trying to do is have a drop down box where one of the selections is part time. I want part time to be in red but all other selections to stay black. This is because our part time is paid differently and will obviously stick out.
I can't seem to figure this out and hoping there may be a javascript code that will allow it.
Thanks in advance for any help!
To do this, insert this code as the custom validate code of your field (you'll need to adjust the value if it's not "Part time"):
if (event.value=="Part time") event.target.textColor = color.red;
else event.target.textColor = color.black;
- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com