
Код:
mc.onRollOver = function() {
this.onEnterFrame = function() {
(this._alpha<=100) ? this._alpha += 10 : delete this.onEnterFrame;
};
};
///
mc.onRollOut = function() {
this.onEnterFrame = function() {
(this._alpha>=0) ? this._alpha -= 10 : delete this.onEnterFrame;
};
P.S. что вам всем этот класс так дался
