i have a problem with a rollover animation stopping at it’s ‘on’ state on release.
i have a movie clip that fades text up from 0% at keyframe 1 to 100% at keyframe 10 and back down to 0% at keyframe 19.
i have an invisible button above this with the following:
on (rollOver, dragOver) {
eps1Btn.gotoAndPlay(2);
}
on (rollOut, dragOut) {
eps1Btn.gotoAndPlay(11);
}
on (release) {
this.eps1._visible = 0;
eps1Btn.gotoAndStop(10);
}
the visible bit is to turn off the invisible button on release.
the problem is that with the following code, all that happens is the movie plays out from 11 on release. i want it to stop at keyframe 10 (where it is).