tags:

views:

49

answers:

1

How to merge two xmllistcollection in Flex 3. Please note, addAll method is not available.

+1  A: 

Use this method.

private function mergeXLC(x1:XMLListCollection,x2:XMLListCollection):XMLListCollection
{
    return new XMLListCollection(x1.copy()+x2.copy());
}
Manoj M