Показать сообщение отдельно
Старый 03.12.2009, 14:38
Zik. вне форума Посмотреть профиль Отправить личное сообщение для Zik. Найти все сообщения от Zik.
  № 2  
Ответить с цитированием
Zik.
 
Аватар для Zik.

Регистрация: Nov 2007
Сообщений: 1,724
Код AS1/AS2:
for (var i:Number = 1; i <= 20; i++) {
	this["mc"+i].onPress=function () {
		this.startDrag();
		this.swapDepths(getNextHighestDepth());
	}
	this["mc"+i].onRelease=function () {
		this.stopDrag();
		for (var n:Number = 1; n <= 20; n++) {
			if (this.hitTest(["m"+n])) {
				this._x = ["m" + n]._x;
				this._y = ["m" + n]._y;
				trace ("ок");
				delete this.onPress;
				delete this.onRelease;
			}
		}
	}
}