Can someone please help with converting this to AS3. Right now I have this code on the movieClip.
onClipEvent (enterFrame) {
// find x and y differences
disx = _root._xmouse-_x;
disy = _root._ymouse-_y;
// calculate the angle
Radians = Math.atan2(disy, disx);
// convert to degrees and set rotation
Degrees = 360Radians/(2Math.PI);
_rotation = Degrees;
}