Try this:

for each(var item:Object in arrTags){

// Your code
}

Hope this helps

-Ravi
http://achieveravi.blogspot.com

On Feb 3, 3:00 pm, krishna2004 <somakrishna2...@gmail.com> wrote:
> hi,
>
> [Bindable]public var arrTagInfo:ArrayCollection=new ArrayCollection();
> [Bindable]public var arrTags:ArrayCollection=new ArrayCollection();
>
> in result event of some getdata iam getting an xml data and iam
> assigning to array collection from that
> iam passing as class parameter of customtag class and adding that to
> an one more array collection
> private function onTagDataResponse(event:UIEvent):void
>                     {
>
>                         arrTagInfo=event.data.view as ArrayCollection;
>                         for(var i:int=0;i<arrTagInfo.length;i++)
>                         {
>
>                                arrTags.addItem(new CustomTag(arrTagInfo
> [i].name,arrTagInfo[i].color);
>
>                         }
>                     }
>
> now what i need is how i have to access each item of arrTags
>
> help me out..
>
> krish

-- 
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_in...@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