prova a modificare il codice del pulsante in questo modo
codice:
this.back_btn.onRelease = function() {
	_root.emptyClip_mc.profile_mc.onEnterFrame = function() {
		if (this._currentframe>1) {
			this.prevFrame();
		} else {
			delete this.onEnterFrame;
			_root.avviaMenu();
			_root.menuOut_mc.getNextHighestDepth();
			this._parent.removeMovieClip(); 
		}
	};
	
};