Point at Mouse Math

basically I’m trying to make a movie clip that rotates to point at the mouse. I got the parts of the script to work where the clip rotates when the mouse moves, the problem is the math that goes into finding the angle of rotation
this is the best Ive managed to come up with so far but the movie clip doesn’t point at the mouse with this, hence a problem

var xDistance:Number = mouseX-this.x
var yDistance:Number = mouseY-this.y
var angle:Number = Math.atan2(yDistance, xDistance)*(180/Math.PI)
this.rotation = angle

this is just a part of the script (the mathy portion)