Avatar

Level 3

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();

          }