una cosa del genere

function loading(clip, width, height){
car = clip.getBytesLoaded();
tot = clip.getBytesTotal();
if(car == tot && tot>1024){
clearInterval(a);
clip._width = width;
clip._height = height;

}
}

//x richiamarla da un pls ad es
bt.onPress=function() {
_root.mc.loadmovie("prova.jpg");
a = setInterval(loading, 50, _root.mc, 150, 150);


}