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.

link|improve this question

17% accept rate
feedback

1 Answer

You can use BindingUtils to accomplish this in pure actionscript:

var label1 : Label = new Label();
var label2 : Label = new Label();
BindingUtils.bindProperty(label2, "text", label1, "text);

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:

<mx:Label id="label1" text="hello, world!"/>
<mx:Label id="label2" text="{label1.text}"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.