is it possible to split ArrayCollection in flex?

263 views Asked by At

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

1

There are 1 answers

8
Daniil Moskovtsov On

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

myCollection.addAll(anotherCollection);