Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/04/2005, 01:01
Avatar de pulento
pulento
 
Fecha de Ingreso: noviembre-2002
Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 21 años, 5 meses
Puntos: 1
.

Es tan facil como poner este code en el prime frame de tu timeline.

code--------->

MovieClip.prototype.WoW = function(finalValue) {
this.onEnterFrame = function() {
this._yscale = this._xscale += this.speed = this.speed*.5000+((finalValue-this._xscale)*.5000);
};
};
tuBoton.onRollOver = function(){
this.WoW(150);
}
tuBoton.onRollOut = function(){
this.WoW(100);
}

------------<


Pruebalo y me cuentas.

Salu2

.
__________________
http://www.flotdesign.dk/

Última edición por pulento; 15/04/2005 a las 03:03