Point to Mouse

Posted On: August 25, 2009
Price: Free!
Flash Player Version: 8
Swishmax Version: Swishmax 2, 2008.08.12
Comments: No comments yet
Download
39 downloads

This is a very simple file that shows an arrow poiting to mouse position.

1
2
3
4
5
6
7
8
9
10
11
12
onSelfEvent (load) {
var dx,dy;
var clip = arrow;
}
onFrame (1) {
this.onEnterFrame = function(){
dx = _xmouse - clip._x;
dy = _ymouse - clip._y;
clip._rotation = Math.atan2(dy, dx)*180/Math.PI;
}
stop();
}
VN:F [1.7.0_948]
Rating: 8.5/10 (2 votes cast)