Reversing frames on button release

Place this code on the end of the timeline, along with the stop() :


workBack.onRelease = function() {
	this._parent.onEnterFrame = function() {
		this.prevFrame();
		if (this._currentframe == 15) {
			delete this.onEnterFrame;
		}
	};
};