Helpme
11-19-2002, 11:27 AM
Can anyone help me with an example??
I 'm trying to make a movie where I get x number of names from a asp file, then entering them into a movie clip. What I'm struggeling with is that I don't want the next movie clipt to start before the one before it is finished. I only get all movie clips to start at the same time. Here's my code:
for(i=0;i<this.count;i++) {
duplicateMovieClip(this.container.catNameBox,"catNameBox"+i,100+i);
tmpObj = eval("this.container.catNameBox"+i);
tmpObj.catName = eval("this.artistname"+i);
tmpObj.catId = eval("this.id"+i);
tmpObj._x = 0;
tmpObj._y = 0;
}
I got a hint that I need to this with a multi-frame loop or with an onClipEvent(enterFrame) instead of a loop, but I just can't figure it out...nice if some one has an example for me!!!
I 'm trying to make a movie where I get x number of names from a asp file, then entering them into a movie clip. What I'm struggeling with is that I don't want the next movie clipt to start before the one before it is finished. I only get all movie clips to start at the same time. Here's my code:
for(i=0;i<this.count;i++) {
duplicateMovieClip(this.container.catNameBox,"catNameBox"+i,100+i);
tmpObj = eval("this.container.catNameBox"+i);
tmpObj.catName = eval("this.artistname"+i);
tmpObj.catId = eval("this.id"+i);
tmpObj._x = 0;
tmpObj._y = 0;
}
I got a hint that I need to this with a multi-frame loop or with an onClipEvent(enterFrame) instead of a loop, but I just can't figure it out...nice if some one has an example for me!!!