Ver Mensaje Individual
  #13 (permalink)  
Antiguo 22/08/2007, 11:20
Rizzo
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 7 meses
Puntos: 30
Re: como dimensiono una imagen?

lo probe con varias imagenes como esta:
Código:
this.createEmptyMovieClip("contenedor",this.getNextHighestDepth());
var foto_mc:MovieClip = contenedor.createEmptyMovieClip("contenedorfoto", this.getNextHighestDepth());
foto_mc.loadMovie("http://www.generacion-c.com/imagen/angelina5.jpg");
this.onEnterFrame = function() {
	if (foto_mc.getBytesLoaded() != 0 && foto_mc.getBytesLoaded() == foto_mc.getBytesTotal()) {
		foto_mc._x = 9;
		foto_mc._y = 35;
		foto_mc._height = 150;
		foto_mc._width = 230;
		delete this.onEnterFrame;
		trace("fin");
	}
};

y todas funcionan talvez no estas escribiendo bien tu XML.