tags:

views:

550

answers:

1

How can I delete the element with a certain index in a Flex XMLList?

+1  A: 

Try this

delete myList[i];
Christophe Herreman