Problem with loadvars- need help asap

Ok everyone, i have an ongoing problem which i cant figure out. For some reason my loadvars arent working. When i tell the actionscript to load a swf none of the loadvars show up. I really need some help with this because its for a project due weds.

Here is a glimpse of some of my coding. to see if anyone can find anything wrong with it.
Someone mentioned it might have something to do with the “scope” but im not sure what that is and how to fix it.

stop();
//----------<MCL>----------\
var myMCL:MovieClipLoader = new MovieClipLoader();
var myListener:Object = new Object();
myMCL.addListener(myListener);
//------------</MCL>-------------\
//trigger the mcl to load the assets:
myMCL.loadClip(“trigger.swf”, 5);
//--------------------------<LoadVars>---------------------\
var myLV:LoadVars = new LoadVars();
myLV.onLoad = function (success) {
if (success){
_level5.loadedInfo.htmlText = myLV.info;
} else {
_level5.loadedInfo.text = “There has been an error loading the requested information. Please contact the Webmaster and report your error.”;
}
}
//-------------------------</loadvars>----------------------------\

I am uploading a ziped folder of the site now…