Цитата:
 Код:
_root.pluch._rotation = Math.atan((_root.pluch._y-_ymouse)/(_root.pluch._x-_xmouse))*Math.PI*18;
|
вообще чтобы перевести радианы в градусы нужно

Код:
_root.pluch._rotation = Math.atan((_root.pluch._y-_ymouse)/(_root.pluch._x-_xmouse))*180/Math.PI;