Question
Load movieclips question...
Hi,
I have a question. I want to use this flash file that I found, but it needs to be changed a bit if that is possible. When you play the file, several words that are in the action script are loaded and placed randomly on the screen.
This is the part of the code where the words are made (I guess?)
So if i play this you will see the words “these, are, the, words, that etc.” floating in the screen.
So I thought it might be possible that I could change it so it doesn’t show the words but it shows a couple of movieclips from the library.
But because I don’t know actionscript that good, I was wondering if anybody could help me with this.
Thanks in advance,
I have a question. I want to use this flash file that I found, but it needs to be changed a bit if that is possible. When you play the file, several words that are in the action script are loaded and placed randomly on the screen.
This is the part of the code where the words are made (I guess?)
quote:
this.somewords = "these are the words that are displayed";
// convert the string of words into an array of words
this.wordList = new Array();
this.wordList = this.somewords.split(" ");
// create one instance for each word in the list
for (n=0; n<this.wordList.length; n++) {
// pick a word from the list
var word = Object.environment.wordList;
var x = random(600)-300;
var y = random(337)-169;
var z = random(Object.environment.fl*2)-Object.environment.fl;
// create an instance of the SpaceWord object
nombre = "word"+String(depth++);
initialization = {txtword:word, x:x, y:y, z:z};
space.attachMovie("spaceWord", nombre, depth, initialization);
}
So if i play this you will see the words “these, are, the, words, that etc.” floating in the screen.
So I thought it might be possible that I could change it so it doesn’t show the words but it shows a couple of movieclips from the library.
But because I don’t know actionscript that good, I was wondering if anybody could help me with this.
Thanks in advance,
