Hey Ya'll

let me eloborate, say i have:

[code]

[Bindable] var myVal1:Boolean;
[Bindable] var myVal2:Boolean;

[/code]

and i want to update the values (which in turn would update the  
'view' ) via an array loop, intuitively i would code

[code]

function {
var myArray = [ myVal1, myVal2 ]
for ( var i = 0; i<myArray.length; i++ ) {
  myArray[ i ] = true;
}
}

[/code]


Of course this does not update the bindable values but rather the  
arrays' indexed items.

How can i achieve this result?



Regards,

Bjorn

Reply via email to