I have two label components in actionscript: label1 and label2.
I want to make it so that when the value of label1.text changes, the value of label2.text automatically changes to the same value.
|
I have two label components in actionscript: label1 and label2. I want to make it so that when the value of label1.text changes, the value of label2.text automatically changes to the same value.
| |||
|
feedback
|
|
You can use BindingUtils to accomplish this in pure actionscript:
Essentially this is saying "set the value of label2.text to label1.text when label1.text changes". If you want to execute code when label1.text changes, you can use a ChangeWatcher. You can accomplish this in MXML too:
| |||
|
feedback
|