cancel
Showing results for 
Search instead for 
Did you mean: 

Text and text field dynamically changing

Former Member
0 Kudos

I want to add some non trivial feature to my form.

For example I have a text with blu background : NAME

I have a text Field beside it where I can input the name.What I want to do is, when I fill the name in, or even click on the text field, so it becomes active - I want to change the bacground color of the Text to green. Is this possible? Somehow with scripts? How can I do that?

Thanks, Peter

Accepted Solutions (1)

Accepted Solutions (1)

harman_shahi
Contributor
0 Kudos

Yes. Add code like following in the "Click" event of the text field:

TextField1.fillColor = "120,120,120";

regards,

Harman

Former Member
0 Kudos

Thanks, this works

Answers (0)