i’m trying to loop a movie 3 times before stoping it. this code is on the last frame, it seems to loop it, but doesn’t stop it after the 3rd time
stop()
repeat=(repeat ++)
if (repeat <= 2){
_root.gotoAndPlay(1)
}
else if (repeat == 3){
stop()
}
any ideas?