Quick question about looping movie clips
I'm a REAL Flash novice, and I'm trying to get a movie clip to loop 3 times, and then continue on.
Here's the code I've written (I'm sure it's painful to see)
stop();
if (!loopCount) {
var loopCount:Number = 0;
}
loopCount++;
if (loopcount < 3) {
gotoAndPlay (1)
}
if (loopCount = 3) {
gotoAndPlay(363);
}
Could someone help me out?
Thanks,
Brandon