Oh yeah, didn't work for me either.....but this does:
onClipEvent (enterFrame) {
_parent.xx = _parent._currentframe;
if (_parent._currentframe<_parent.desiredPage) {
_parent.gotoAndPlay(_parent._currentframe++);
} else if (_parent._currentframe>_parent.desiredPage) {
_parent.gotoAndStop(_parent._currentframe-1);
} else {
_parent.stop();
}
}




Reply With Quote