prueba asi si tienes dudas pregunta ahora. pegalo tal cual en un fla nuevo no cambies nada.
Código:
this.createEmptyMovieClip("contenedor",this.getNextHighestDepth());
var foto_mc:MovieClip = contenedor.createEmptyMovieClip("contenedorfoto", this.getNextHighestDepth());
foto_mc.loadMovie("http://www.galoelectronica.com.ar/borrar/imagenesadopciones/28082006-2.jpg");
//--------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------
function precarga() {
if (foto_mc.getBytesLoaded() != 0 && foto_mc.getBytesLoaded() == foto_mc.getBytesTotal()) {
foto_mc._x = 200;
foto_mc._y = 200;
foto_mc._height = 150;
foto_mc._width = 230;
//--------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------
if (foto_mc._height == 150) {
clearInterval(id);
}
//--------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------
}
}
id = setInterval(precarga, 10);