Código:
retroceder = function (lamov) {
this.onEnterFrame = function() {
currf = lamov._currentframe;
if (currf>1) {
currf -= 1;
lamov.gotoAndStop(currf);
}
};
};
pega esta funcion al inicio de tu .fla y la usas cuando necesites asi:
this, si queres retroceder la main timeline, si queres retroceder un movieClip: retroceder(elmovie);