Показать сообщение отдельно
Старый 06.05.2008, 20:04
crc вне форума Посмотреть профиль Отправить личное сообщение для crc Найти все сообщения от crc
  № 3  
Ответить с цитированием
crc
 
Аватар для crc

Регистрация: Jan 2008
Адрес: Вильнюс
Сообщений: 91
Отправить сообщение для crc с помощью ICQ
Код:
pic.onMouseMove = function () {
	this.speed = 0.1;
	this.onEnterFrame = function () {
		var dx = this._x - this._parent._xmouse;
		var dy = this._y - this._parent._ymouse;
		this._x += dx * this.speed;
		this._y += dy * this.speed;
		if (!(Math.abs (dx) > 0.01 && Math.abs (dy) > 0.01)) {
			this._x = this._parent._xmouse;
			this._y = this._parent._ymouse;
			delete this.onEnterFrame;
		}
		if (pic._x < 0 || pic._y < 0 || pic._x > Stage.height || pic._y > Stage.width)
		{
			pic._x = Stage.width/2;
			pic._y = Stage.height/2;
		}
	};
};