Prob with MovieClip Loader()

hi,

I am trying to load 2 swf in my master.swf via MovieClipLoader class, one is “image.swf” and other is “line.swf”.The prob is that its loading “image.swf” but not line.swf.
As I want line.swf to appear after image.swf i placed it on frame 10.

here’s my code:on Frame 1

stop();
var myMovieMCL:MovieClipLoader = new MovieClipLoader();
myMovieMCL.loadClip(“imageTransition.swf”, 1);

//here the code on frame 10
stop();
var mclListener:Object = new Object();

myMovieMCL.loadClip(“line.swf”, 5);
mclListener.onLoadError = function(target_mc:MovieClip, errorCode:String) {
trace(“ERROR!”);
}
myMovieMCL.addListener(mclListener);

whats the prob? i checked from bandwidth profiler its not even entering the 10 frame.Why ?,

thanks