agreguen una precarga, y para trabajar mejor creen componentes cuando van a trabajar con imagenes.
Código:
this.createEmptyMovieClip("contenedor", this.getNextHighestDepth());
var foto_mc:MovieClip = contenedor.createEmptyMovieClip("contenedorfoto", this.getNextHighestDepth());
foto_mc.loadMovie("imagen.jpg");
this.onEnterFrame = function() {
if (foto_mc.getBytesLoaded() != 0 && foto_mc.getBytesLoaded() == foto_mc.getBytesTotal()) {
foto_mc._height = 400;
foto_mc._width = 400;
delete this.onEnterFrame;
trace("fin");
}
};