tags:

views:

3

answers:

0

Hi, I want to dynamically display some text from an array one after another in a dynamic textfield.

var wordList:Array = new Array('one','two','three');

for (var i = 0; i < wordList.length; i++) {
this.text_mc.txt.text = wordlist[i];
// Pause for 3 seconds and then move next
}

its the "Pause for 3 seconds and then move next" part I cant figure out.

Thanks.