This code will work :
while(container.numChildren > 0)
{
container.removeChildAt(0);
}
However I wanted to point out what is wrong with that loop so you understand what is happening. Add the trace I've added to your code below, into your code. :
for(var i:int=0;i<container.numChildren;i++)
{
trace (i + " : " + container.numChildren);
var currImg:Sprite = container.getChildAt(i) as Sprite;
container.removeChild(currImg);
}
You'll see that each time through the loop the number of children decreases as expected.
But what you need to understand is that when a child is removed -- the display list of the container changes in a very significant way.
Here's an example of how your display list might look before running the loop -- the number I have on the front of these is their position on the container display list.
0-cat
1-dog
2-bird
3-cow
4-elephant
5-clown
Now, the first time through the loop, you remove cat cause it's location is 0 on the display list. Here's what the display list looks like now :
0-dog
1-bird
2-cow
3-elephant
4-clown
Notice that the display list indexes have shifted based on the removed child. There CANNOT be gaps on the display list by design.
so, the next time through the loop, the value of i is 1 -- right ? That means "bird" will be removed from the display list, as opposed to dog, which is what you might have expected.
so here's the display list after that next time through the loop :
0-dog
1-cow
2-elephant
3-clown
So, yes. Many of these solutions will work. In this case I'd recommend the while loop. But I think the real knowledge to be gained from this question is understanding the problem.