Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Making movieclips point at the mouse
Author: Ozzy Greyman
| Website: www.freewebs.com/ozzygreyman |
First you need to make a movieclip
that points to the right. Why to the
right you might ask, well in Flash
the degrees start on the right
(0 degree) and ends right (360 degree).
Select the movieclip and give it an
instance name of arrow (you dont HAVE to make thats what im going to name it so it will be easier to follow this tutorial). After that go to the frames actionscript panel. Here is the full script
onEnterFrame = function () {
var dy = _ymouse-arrow._y;
var dx = _xmouse-arrow._x;
var radians = Math.atan2(dy, dx);
arrow._rotation = radians*180/Math.PI;
};
| » Level Intermediate |
|
|
Added: : 2008-05-05
Rating: 8.16 Votes: 20
Hits: 2094
|
| » Author |
|
Started actionscript not even a year ago buy spend my spair time learning it.
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (5 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|