Adding/Controlling Delay in a Loop

Is there any way to add a delay within a FOR loop such as:


for (var i:int=0; i < 10; i++) {
    var termSprite:MovieClip = new MovieClip;
    addChild(termSprite);
}

So that after the addChild statement there is pause added in before continuing on to the next iteration?