|    
			
				14/07/2009, 02:50
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: abril-2008 
						Mensajes: 613
					 Antigüedad: 17 años, 6 meses Puntos: 22 |  | 
  |  Respuesta: GALERIA sencilla por si sirve a alguien  
  Hola,Para que la foto cargada cambie de tamaño, solo tienes que ajustar las dimensiones a las que quieres con "_width" y "_height". Pero lo tienes que poner en el mismo clip de la capa "fotoload" en el evento "onClipEvent". Te pongo el código que ya tienes con el ancho y alto de 200x300:
 
 onClipEvent(data){
 if(this.getBytesLoaded()>=this.getBytesTotal()) {
 this._width=200;//ESTO ES EL ANCHO
 this._height=300; //ESTO ES EL ALTO
 if(this._alpha==0){
 _parent.motionOnClip(this, "_alpha", mx.transitions.easing.Regular.easeIn, 0, 100, 15, false,null,null,null);
 }else{
 _parent.motionOnClip(_parent.insfalsa, "_alpha", mx.transitions.easing.Regular.easeIn, 100, 0, 15, false,null,null,null);
 }
 }
 }
 
 ESTO SOLO VALE SI EL ANCHO Y ALTO SIEMPRE SON IGUALES.
 
 Saudos
     |