- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
HI,
You can iterate through the loop and you can get the Objects inside the List right.
for(var i:int=0;i<arr.length();i++){
if(i==0){
var obj:Object=new Object();
obj=arr.getItem(i);
//try to Typecast to Your Objecty
}
if(i==1)
{
var obj:Object=new Object();
obj=arr.getItem(i);
//try to Typecast to Your Objecty
}
But Before that try to TypeCast your Result to ArrayCollection.
var arr:ArrayCollection=new ArrayCollection();
arr=event.result as ArrayCollection();
}
Views
Replies
Total Likes