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
2010-05-11 09:33:12