|    
			
				15/11/2005, 19:30
			
			
			  | 
  |   |  | Moderador |  |  Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú 
						Mensajes: 16.726
					 Antigüedad: 22 años, 3 meses Puntos: 406 |  | 
  |  Hola deprabado:Coloca el MC en el escenario en la capa 1 frame 1 y le pones como nombre de instancia: efecto.
 En la capa 2 frame 1 Coloca el botón y le pones como nombre de instancia: boton
 Crea la capa 3 frame 1 éste código:
 boton.onPress=function(){
 efecto.onEnterFrame=function(){
 if (this._xscale<200){  //aquí cambia el valor según tu necesidad
 this._xscale=this._yscale=this._xscale+10
 }else{
 delete this.onEnterFrame
 }
 }
 }
 boton.onRelease=function(){
 efecto1.onEnterFrame=function(){
 if (this._xscale>100){  //si no ha recuperado su tamaño
 this._xscale=this._yscale=this._xscale-10
 }else{
 delete this.onEnterFrame
 }
 }
 }
 
 Espero haberte sido de ayuda.
     |