Reputation: 71198
so in mxml it's
<mx:z id="a" ... <mx:z id="b" value="{a.value}"
how do you do this in actionscript ?
Upvotes: 0
Views: 277
Reputation: 16357
Use BindingUtils.bindProperty().
BindingUtils.bindProperty()
See here.
Upvotes: 2