MovieClipLoader

PLEASE HELP…can’t get this!!!

Hi folks. Having a little trouble with the MovieClipLoader class.

Basically I am tryin to create my site using this. I have a movie called “site_loader”, in the action script in the first frame I have this;

var mcl:MovieClipLoader = new MovieClipLoader();
var mclL:Object = new Object();
mclL.onLoadProgress = function(target,loaded,total) {
loader.percent.text = Math.round((loaded/total) * 100) + “%”;
}
mclL.onLoadInit = function() {
loader._visible = false;
loader.percent.text = “”;
}
mcl.addListener(mclL);
[COLOR=red]mcl.loadClip(“Resolve_home.swf”,holder);[/COLOR]

This is all fine, it open a new movie “Resolve_home” within the movie clip “holder” when the movie starts (and has a preloader)…all good…

My problem is this…now that I am in the new movie “Resolve_home” which is inside the “holder” movieClip in the movie “site_loader”…(still with me)…I want to have a button in the “Resolve_home” movie which loads a new movie into the initial “holder” movieClip in the initial “Site_holder” movie…I guess this is simple and involves the correct way of targeting the initial movie…( I guess it would also be good practice to unload the currrent movie before loading a new movie into the “loader” movie clip. THis is what I have so far on the movie “Resolve_home” which has been loaded into the movieClip “loader” within movie “site_holder” :

home_btn.onRollOver = over;
home_btn.onRollOut = out;
[COLOR=red]home_btn.onRelease = goHome;[/COLOR]
business_btn.onRollOver = over;
business_btn.onRollOut = out;
function over() {
this.gotoAndPlay(2);
}
function out() {
this.gotoAndPlay(7);
}
[COLOR=red]function goHome() {[/COLOR]
[COLOR=red]loader._visible = true;[/COLOR]
[COLOR=red]mcl.loadClip(“Resolve_residential.swf”,holder);[/COLOR]
[COLOR=red]}[/COLOR]