Omu
Omu

Reputation: 71198

flex 3 how to programatically bind properties of 2 objects

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

Answers (1)

Dimitar Dimitrov
Dimitar Dimitrov

Reputation: 16357

Use BindingUtils.bindProperty().

See here.

Upvotes: 2

Related Questions