Coding Blues (MovieClipLoader/ Listeners?)

Oh Lord, I’m back to Flash after a long break ([COLOR=DarkOliveGreen]You last visited: 07-12-2002[/COLOR]) I’m finding that after a year or so, Flash has evolved somewhat in my absence. I’ve worked myself into such a state that I have no idea what all these fancy component things are, but i’m getting there… :book:

My major problem is that i’m writing code which almost works, but dosn’t quite… i’m not getting errors, but i think i am structuring my code the wrong way. I’ve been posting stuff on experts-exchange, which dosn’t get answered, soo i thought kirupaforum remembered my birthday! i should pay a visit :party:

I think my latest problem really summs up my confussion. The idea is to import “teePrints” (swf files) into dynamicly created movieclips, the movie clips have functions and behaviors for loading and manipulating the teePrints. Currently it all works fine, but i can’t seem to attach my “loadProgress” listener to the MovieClipLoader object into which the print is imported.

here is the script for the first frame:

_root.createEmptyMovieClip(“teePrint”,0);
_root.teePrint._x=200;
_root.teePrint._y=200;

_root.teePrint.loadPrint = function(target){
this.attachMovie(“loading”,“loading”,10,{_alpha:50});

 this.loader = new MovieClipLoader();
 this.loadProgress = new Object();
 this.loadProgress.onLoadStart = function(){
      trace("LoadStart");
 }
 this.loadProgress.onLoadComplete = function(){
      this.loading.removeMovieClip();
      trace("LoadComplete");
 }
 this.loader.addListener(this.loadProgress);
 this.createEmptyMovieClip("teePrint",0);
 this.loader.loadClip("./print.swf",this.teePrint);

}

_root.teePrint.loadPrint(_root.teePrint);

The “Loading” clip appears, and after a moment the teePrint appears also… but neither the onLoadStart() or onLoadComplete() functions are called.

I hope this is the correct forum for questions and things, hmmn thanks for looking!