Probs with levels. (Regarding Flashlevel Nav)

Hey guys 'n gals

I’m trying to get this code to work. It’s regarding the Flashlevel nav bar. (see the thumbnail at the top of the page with the “nr2” bit written on it? That’s it!)
This works fine, until I put all of this inside a MC instance. (I need it to be inside a MC, and not on the root/main scene)

MovieClip.prototype.backwards = function(){
	this.onEnterFrame = function(){
		this.prevFrame();
		if(this._currentframe == 1) delete this.onEnterFrame;
	}
}
loader.loadMovie(this.path);
aux.onEnterFrame = function() {
	if(loader._width>0) {
		delete this.onEnterFrame;
		loader.onRollOver = function(){
			delete over.onEnterFrame;
			over.play();
		}
		loader.onRollOut = function(){
			over.backwards();
		}
        loader.onRelease = function() {
			loadMovie(this._parent.link, _root.mc1);
                };
	}
};

I think it’s just this line that needs fixing, because mc1 is no longer in the root

loadMovie(this._parent.link, _root.mc1);

Someone sugested I use levels. But found I could only get it to load the relevant file into a new window. I need it to load into a specific MC mc1 (which is not on the main scene anymore)

I tried this:

loadMovieNum(this._parent.link,_level1.mc1);

I know, that’s prob completely wrong. But it did find the relevant file. How can I get it to load into mc1?

Any suggestions?

“Help me Obi-one. Your my only hope” :rd: