Hello!
I have problem with getting a random word from an array and the putting that word to a text field.
I setup the array for my words like this:
// a string of words
this.somewords = "wind breeze storm stormy tornado text space";
// convert the string of words into an array of words
this.wordList = new Array();
this.wordList = this.somewords.split(" ");
And I want to put randomly these words to a movieclip that I’m attaching to the stage about 50 times. Anyone could help?
Thanks,
sumo