mc.onRollOver = function() {
this.onEnterFrame = function() {
this._x += 2;
};
};
mc.onRollOut = function() {
this.onEnterFrame = null;
};
mc.onRollOver = function() {
this.onEnterFrame = function() {
this._x += 2;
};
};
mc.onRollOut = function() {
this.onEnterFrame = null;
};