views:

58

answers:

1

so in mxml it's

<mx:z id="a" 
...
<mx:z id="b" value="{a.value}"

how do you do this in actionscript ?

+1  A: 

Use BindingUtils.bindProperty().

See here.

Dimitar Dimitrov