View Full Version : Repeat MC
How do I repeat movie clip a specific number of times? say 3X's
say MC is named "Roller"
has anyone done this?
magicwand
04-19-2003, 03:23 PM
are you asking to loop through your Movie Clip x number of times?
if so..
put this code at the end of MC
increment+=1;
if (increment<x){
gotoAndPlay("beginning");
}else{
stop();
}
i think it will work.
Ricod
04-19-2003, 04:24 PM
small note : increment++; will do the same as increment+=1;
|
vBulletin® v3.8.5, Copyright ©2000-2013, Jelsoft Enterprises Ltd.