Показать сообщение отдельно
Старый 19.10.2007, 21:25
Mr. Fixit вне форума Посмотреть профиль Найти все сообщения от Mr. Fixit
  № 6  
Ответить с цитированием
Mr. Fixit
Banned

Регистрация: Oct 2006
Адрес: кагбэ Киеф!!1
Сообщений: 1,473
Код:
my_mc.onRollOver = function () {
	this.onEnterFrame = function () {
		if (this._xscale == 200) {
			delete this.onEnterFrame;
		} else {
			this._xscale += 10;
			this._yscale += 10;
		}
	};
};
my_mc.onRollOut = function () {
	this.onEnterFrame = function () {
		if (this._xscale == 100) {
			delete this.onEnterFrame;
		} else {
			this._xscale -= 10;
			this._yscale -= 10;
		}
	};
};