18/07/2007, 02:04
|
| | | Fecha de Ingreso: julio-2004 Ubicación: Mallorca (Illes Balears)
Mensajes: 1.121
Antigüedad: 20 años, 4 meses Puntos: 12 | |
Re: menu ericsson Me precipité un poco antes. Ahí va el código del ejemplillo que he hecho para estar más seguro:
Código:
onClipEvent (load) {
// Se carga la clase tween.
import mx.transitions.Tween;
// Le asigno un valor inicial a la escalaX.
this._xscale = 75;
}
on (rollOver) {
// Mientras uno crece hasta xscale=100, el otro decrece hasta xscale=50, todo ello en 1 segundo y con efecto elástico.
var negro:Tween = new Tween(this, "_xscale", mx.transitions.easing.Elastic.easeOut, this._xscale, 100, 1, true);
var verde:Tween = new Tween(_root.verde, "_xscale", mx.transitions.easing.Elastic.easeOut, _root.verde._xscale, 50, 1, true);
}
on (rollOut) {
// Ambos vuelven a su posición incial de xscale=75 también con efecto elástico y en 1 segundo.
var negro:Tween = new Tween(this, "_xscale", mx.transitions.easing.Elastic.easeOut, this._xscale, 75, 1, true);
var verde:Tween = new Tween(_root.verde, "_xscale", mx.transitions.easing.Elastic.easeOut, _root.verde._xscale, 75, 1, true);
}
Si quieres este pequeño fla no tienes más que pedirlo.
Saludos! |