+HELP quick flashMX?
+HELP quick flashMX?
Out of context: Reply #6
- Started
- Last post
- 8 Responses
- majman0
on the last frame of the loop do something like this:
i++
if(i >= 3){
stop;
}else{
gotoAndPlay(1);
}that should do it. for the gotoandPlay(1), put whatever framenumber the loop starts out at if it isn't the first frame. also, if you don't want it to stop after it loops 3 times, change the stop command into a gotoAndPlay(?) something.
hope that helps