Been thinking about this. One thing to note, if your dataProvider beind the
list control is a collection of typed objects, then in a itemRenderer the
data variable should be of that type. Otherwise, you'd have to create a new
instance of the needed object and populate it with properties in data. This
can be accomplished by overriding the setData() method...paraphrased here
override public function set data(value:Object):void
{
super.data = value;
//massage value into somenewValue
_data = someNewValue;
}
--
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?
-------------------------------------------------------------
To unsubscribe from this list, simply email the list with unsubscribe in the
subject line
For more info, see http://www.affug.com
Archive @ http://www.mail-archive.com/discussion%40affug.com/
List hosted by http://www.fusionlink.com
-------------------------------------------------------------