I am creating an order form and want to have an address in black font color and if a change is made to the address the color changes to red is this something that is possible to do in the adobe acrobat forms?
I am creating an order form and want to have an address in black font color and if a change is made to the address the color changes to red is this something that is possible to do in the adobe acrobat forms?
which could be simplified to:
event.target.textColor = (event.value === event.target.defaultValue) ? color.black : color.red;
If you don't want to set a default value, post again, as there are other approaches you can take.
George