Показать сообщение отдельно
Старый 31.10.2005, 19:42
Vitamin E вне форума Посмотреть профиль Отправить личное сообщение для Vitamin E Найти все сообщения от Vitamin E
  № 5  
Ответить с цитированием
Vitamin E

Регистрация: Jul 2005
Сообщений: 99
Отправить сообщение для Vitamin E с помощью ICQ
Очень даже устраивает, только не знаю каким образом это можно сделать, пока сделал вручную:
Код:
MovieClip.prototype.copyProperties = function() {
	for (var i in this) {
		if (typeof (this[i]) == "object" || typeof (this[i]) == "movieclip") {
			_global[i+"x"] = this[i]._x;
			_global[i+"y"] = this[i]._y;
			_global[i+"alpha"] = this[i]._alpha;
			_global[i+"visible"] = this[i]._visible;
			_global[i+"currentframe"] = this[i]._currentframe;
			_global[i+"enabled"] = this[i].enabled;
		}
	}
};
MovieClip.prototype.pasteProperties = function() {
	for (var i in this) {
		if (typeof (this[i]) == "object" || typeof (this[i]) == "movieclip") {
			this[i]._x = _global[i+"x"];
			this[i]._y = _global[i+"y"];
			this[i]._alpha = _global[i+"alpha"];
			this[i]._visible = _global[i+"visible"];
			this[i].gotoAndStop(_global[i+"currentframe"]);
			this[i].enabled = _global[i+"enabled"];
		}
	}
};
Помогите please...
__________________
Я не волшебник, я только учусь :p