|    
			
				17/02/2007, 13:26
			
			
			  | 
  |   |  | Moderador |  |  Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú 
						Mensajes: 16.726
					 Antigüedad: 22 años, 3 meses Puntos: 406 |  | 
  |  Re: No Encuentro el Codigo DaVinci...  
  Hola cpucpu:Prueba deshabilitando el botón para evitar que funcione el rollOut.
 Adiciona éste código después del rollOver:
 on(release){
 J = 200;
 onEnterFrame = function () {
 this.clip._width += 10;
 if (this.clip._width>=J) {
 delete onEnterFrame;
 btn.enabled = false;
 }
 };
 }
 btn es el nombre de instancia del botón.
 
 Espero haberte sido de ayuda.
     |