is it possible to split ArrayCollection in flex?

226 Views Asked by At

im trying split arrayCollection and copy into another arrayCollection. Is it possible .any ideas guys ?

1

There are 1 best solutions below

8
On

You can use addAll method for adding one IList to another.

myCollection.addAll(anotherCollection);