RE: [flexcoders] ArrayCollection bound to an Array.

2008-08-26 Thread Battershall, Jeff
Your approach to the problem doesn't appear to be correct. Some additional code would be helpful. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexaustin Sent: Tuesday, August 26, 2008 11:17 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] ArrayCollection bound to an Array.

2008-08-26 Thread Sefi Ninio
You could bind a setter, something like this (written in gmail, this was not compiled): private var array:Array; private var arrayCollection:ArrayCollection; public function ClassName(..args) { //Constructor array = new Array(); BindingUtils.bindSetter(setArrayCollection, this, array);