Help! Reverse Playing Level


function forward(mcName, stopframe) {
	mcName.onEnterFrame = function() {
		this.gotoAndStop(this._currentframe+1);
		if (this._currentframe == stopframe) {
                         this.gotoAndStop(stopframe);
			
delete this.onEnterFrame;
		}
	};
}