Привет!

Код:
zero = (Stage.width/2-_xmouse);
car._x = Stage.width/2;
var mouseListener:Object = new Object();
mouseListener.onMouseMove = function() {
onMouseDown = function () {
car.onEnterFrame = function() {
shag = (car._x-_xmouse)*1.8;
car._x = _xmouse;
if (_xmouse>=zero) {
car.w1._rotation -= shag;
car.w2._rotation -= shag;
} else {
car.w1._rotation += shag;
car.w2._rotation += shag;
}
};
};
onMouseUp = function () {
car.onEnterFrame = function() {
car.w1._rotation == 0;
car.w2._rotation == 0;
};
};
};
Mouse.addListener(mouseListener);