15/04/2005, 01:01
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 22 años 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
.
Última edición por pulento; 15/04/2005 a las 03:03 |