La cosa migliore è così

img = new LoadVars()
img.load('pagina.asp')
img.onLoad = function(){
_root.mc.loadMovie(this.img)
_root.onEnterFrame = function(){
if(mc.getBytesLoaded() >= _root.mc.getBytesTotal() && mc.getBytesTotal()>1024){
// azioni da eseguire a filmato caricato
delete _root.onEnterFrame
}else{
// azioni da eseguire durante il caricamento
}
}

}