Ciao,
Sto implementando un menu ed avrei un quesito.
Queste sono le caratteristiche:
Pulsanti bitmap che al rollover cambiano bitmap.
Codice sulla timeline:
import mx.transitions.Tween;
import mx.transitions.easing.Normal;
var tw:Tween;
btn_1.onRollOver = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 100, 1.0, true);
}
btn_1.onRollOut = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 0, 1.0, true);
}
btn_2.onRollOver = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 100, 1.0, true);
}
btn_2.onRollOut = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 0, 1.0, true);
}
btn_3.onRollOver = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 100, 1.0, true);
}
btn_3.onRollOut = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 0, 1.0, true);
}
btn_4.onRollOver = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 100, 1.0, true);
}
btn_4.onRollOut = function () {
tw = new Tween(this, "_alpha", Normal.easeOut, this._alpha, 0, 1.0, true);
}
Funziona benissimo, ma avrei l'esigenza che al rollout, l'immagine poi torni al 100%, dato che in quel momento saro' in rollover in un altro pulsante.
Come posso fare?