This content has been marked as final.
Show 3 replies
-
1. Re: Stop looping file at specific frame
kglad Oct 19, 2011 1:30 PM (in response to ruthgordy)use:
loop = loop + 1
if (loop== 3) {
this.onEnterFrame=function(){
if(this._currentframe==155){
this.stop();
delete this.onEnterFrame;
}
}
}
this.gotoAndPlay(2);
-
2. Re: Stop looping file at specific frame
ruthgordy Oct 19, 2011 1:49 PM (in response to kglad)Thanks kglad
You're awesome!!
J
-
3. Re: Stop looping file at specific frame
kglad Oct 19, 2011 2:26 PM (in response to ruthgordy)you're welcome.



