tags:

views:

46

answers:

1

hi,

can I create an ArrayCollection into another ArrayCollectionon in Flex ?

(or just an array.. or a list if I cannot)

thanks

A: 

Yes, there is no reason why you couldn't do it.

        var array:ArrayCollection = new ArrayCollection();
        var childArray:ArrayCollection = new ArrayCollection();
        childArray.addItem("test");
        array.addItem(childArray);
Cornel Creanga