New to Video: Pulling my hair out

Hello Everybody

I am sure my question is basic for video gurus, but as for me I am at my end.

I am externally loading a .swf into a movie clip. All I want is for a a mc to pop up after it is complete asking if they would like to play it again. However, I cannot get the “complete” listener action working.

This is my code I have thus far.

var my_mcl:MovieClipLoader = new MovieClipLoader();
my_mcl.loadClip(“Search_skin.swf”, “loadmc”)

var myListener:Object = new Object();
myListener.complete = function(){
trace(“working”)
};
my_mc1.addEventListener(“complete”, myListener);

Can anybody tell me where I am off?

Thanks a bunch

Sean
Thanks