Показать сообщение отдельно
Старый 06.05.2007, 19:47
iNils вне форума Посмотреть профиль Отправить личное сообщение для iNils Посетить домашнюю страницу iNils Найти все сообщения от iNils
  № 14  
Ответить с цитированием
iNils
Негуру
 
Аватар для iNils

администратор
Регистрация: Jan 2000
Адрес: Кёнигсберг in Moscow
Сообщений: 21,883
Записей в блоге: 7
Код:
import mx.transitions.Tween;
import mx.transitions.easing.None;
currentThumb.onRollOver = currentThumb.onDragOver = function () {
	this.tweenX.stop ();
	this.tweenY.stop ();
	this.tweenX = new Tween (this, "_xscale", None.easeNone, this._xscale, 140, 0.3, true);
	this.tweenY = new Tween (this, "_yscale", None.easeNone, this._yscale, 140, 0.3, true);
	showName_txt.text = this.NAME;
};
currentThumb.onRollOut = currentThumb.onDragOut = function () {
	this.tweenX.stop ();
	this.tweenY.stop ();
	this.tweenX = new Tween (this, "_xscale", None.easeNone, this._xscale, 100, 0.3, true);
	this.tweenY = new Tween (this, "_yscale", None.easeNone, this._yscale, 100, 0.3, true);
	showName_txt.text = this.NAME;
	showName_txt.text = "";
};
__________________
(и)Нильс.ru | Плагины для FlashDevelop