Hi Jackie,

You can try 'for each'

for each(var item:Object in aColl){
trace(item.isSelected);
}

Let me know if it works for you.

-Ravi

On Jun 23, 6:41 am, jackie <yuubo...@gmail.com> wrote:
> Hello Ravi,
>
> Thanks! that really helps.
>
> How about iterating to object List?
> I tried the following, but numChildren value does not show the correct
> value from what I supposed to expect.
>
>                          var aColl:List= this.catalogs;
>                 for (var i = 0; i < aColl.numChildren; i++) {
>                                 trace((aColl.dataProvider as
> ArrayCollection).getItemAt(i).isSelected);
>                         trace((aColl.dataProvider as 
> ArrayCollection).getItemAt(i).id);
>                         trace((aColl.dataProvider as 
> ArrayCollection).getItemAt(i).name);
>                 }
>
> jackie
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to