Is the following code functionally identical:

target.removeAll();
for each (var item:* in source)
{
target.addItem(item);
}

and this:
target = new ArrayCollection(source.toArray());

Thanks

Reply via email to