Problem loading external swf with preloader

i have a preloader that loads another swf. the second swf has animations but by the time the preloader is done loading the animations are already done. therefore the user does not see any of them. how do i prevent the animations from starting once the preloader starts loading the file? i included my preloader actionscript below. thanks


var requestObj:URLRequest = new URLRequest("hockernalu.swf");
var loaderObj:Loader = new Loader();
addChild(loaderObj);
loaderObj.load(requestObj);

loaderObj.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preloadProgress);

function preloadProgress(event:ProgressEvent):void {
    var loadedPercent:int = event.bytesLoaded / event.bytesTotal * 100;
    this.loadingBar_mc.loaderText_txt.text = loadedPercent + "% loaded";

}
loaderObj.visible=false;
loaderObj.contentLoaderInfo.addEventListener(Event.COMPLETE, preloadComplete);
function preloadComplete(event:Event):void {
    
    //loadingBar_mc.visible = false;
    this.loadingBar_mc.loaderText_txt.visible=false;
    this.loadingBar_mc.blocks_mov.gotoAndStop("loaded");
    if(loaderObj.visible == false)
    {
    gotoAndPlay("movement");
    }
}