so I’m using this script to play a menu backwards and it works, but when clicking the button to do so…it plays the whole darn thing back and does not stop at my stop actions…do I have to write the action like this now? ;()pots ?!!
ideas, thoughts???
thx,
m.
–
onClipEvent (enterFrame) {
if (_root.direction == “forwards”) {
this.gotoAndStop(this._currentframe+1);
}
if (_root.direction == “backwards”) {
this.gotoAndStop(this._currentframe-1);
}
}
I’ve always had much better luck if I just make the MC twice as long and essentially duplicate the “foward” phase, but then reverse it in a matter of speaking, as a “reverse” phase. Twice as many frames in the MC, but much more successful and your stop()s will work. There’s my 2 cents.