Search tutorials
Creating the code (Cont.)
The next section contains all the brains. This section of code will execute every time the mouse is moved. First, we will set up a few variables. We need to know where the cursor is and how far away it is from each of the icon origin points.
onClipEvent (mouseMove) {
// Get cursor x and y coordinates
y = getProperty("_root.drag", _y);
x = getProperty("_root.drag", _x);
// Find cursor offset for each icon based on icon's starting location
HomeOffset = x-200;
NewsEventsOffset = x-250;
ScheduleOffset = x-300;
ManualOffset = x-350;
DirectionsOffset = x-400;
LessonOffset = x-450;
ContactUsOffset = x-500;
MP3CollectionOffset = x-550;
BookmarkOffset = x-600;
LinksOffset = x-650;
| » Level Intermediate |
|
Added: 2002-02-19 Rating: 8 Votes: 185 |
| » Author |
| I'm a freelance web developer and designer. Although I specialize in networking (you know, Cisco routers, servers, etc), I also dabble with programming and right-brained creativity. |
| » Download |
| Download the files used in this tutorial. |
| Download (893 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!