Answered
I'm trying to create a checkbox that the text field background color has three option dependent/interactive with on the end user's answer. (Red for No, Green for Yes, None for No answer)
I'm creating the form in Adobe Designer 7.0
Is there a way to create this?
Thank you. K
Click Properties, click the Actions tab, select Trigger: Mouse Up.
Select Action: Run a JavaScript
Click Add and paste this code into the box.
var f = this.getField("Box1");
f.fillColor = color.yellow;
Change the color.yellow to the color you want. Note: the Box1 refers to the name of your check boxes.
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.