frame(s)


    public function onEnterFrame(event:Event):void {
     var dx:Number = mouseX - arrow.x;
     var dy:Number = mouseY - arrow.y;
     var radians:Number = Math.atan2(dy, dx);
     arrow.rotation = radians * 180 / Math.PI;
    }
   }
  }