I have tried adding an object to an ArrayCollection inside an ArrayCollection and it isn't working. I am getting Error #1009 with the following implementation:
for (var x:Number = 0; x < identifyArrayCollection.length; x++)
{
identifyArrayCollection[x].speedsArrayCollection.addItem(speedsObj);
}
I can add the speedsObj to an ArrayCollection that is not inside an ArrayCollection.
Any help would be appreciated.
Thanks,
Mark