RE: [flexcoders] Circular Binding

2007-03-02 Thread Gordon Smith
@yahoogroups.com Subject: [flexcoders] Circular Binding Hi Does anyone knows how Circular Binding works? I've used the follwing action script code and I've expected it to go into endless loop - but it did not. Any idea why ? BindingUtils.bindProperty(item,Threshold,txtin,text

Re: [flexcoders] Circular Binding

2007-03-01 Thread slangeberg
What is the effect of this code? Were you able to do simple binding that way to both items? -Scott On 3/1/07, raz_gilad [EMAIL PROTECTED] wrote: Hi Does anyone knows how Circular Binding works? I've used the follwing action script code and I've expected it to go into endless loop - but it

re: [flexcoders] Circular Binding

2007-03-01 Thread Ben Stucki
] From: raz_gilad [EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 11:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Circular Binding Hi

[flexcoders] Circular Binding

2007-02-28 Thread raz_gilad
Hi Does anyone knows how Circular Binding works? I've used the follwing action script code and I've expected it to go into endless loop - but it did not. Any idea why ? BindingUtils.bindProperty(item,Threshold,txtin,text); BindingUtils.bindProperty(txtin,text,item,Threshold); Thanks