Deactivate Menu:
This layer acts as the "net" for catching mouse rollover/rollout events and acts as the switch to turn the menu off. This "net" is necessary because to my knowledge you can't have buttons overlapping each other. I tried doing this with a solid background underneath everything and an Action using the mouseEvent "on (rollout)" attached to the symbol instance. Problem was when I rolled over a navigation button layered on top, Flash understands that as a rollout event for the bottom button object even though your still technically within the bounding box of the object. Don't ask me why. Call Macromedia and ask them. Anyway, here's the steps.
- Create a new layer below the previous and name it "Deactivate Menu".
- Create a Blank Keyframe(F7) at Frame 3.
- Select Frame 3 and place the Graphic symbol "Mask" in that Keyframe.
- Create a Keyframe (F6) in Frame 16.
- In the Instance panel change the Behavior from "Graphic" to "Button".
- Assign the following to the button instance. This Action tells Flash to
continue playing this timeline after either one of the two mouse events have
occurred and turns off the menu. Here also is a spot where you could use our
custom function to continue playing the timeline.
on (rollOver, rollOut) { play (); } - Select Frame 3
- In the Instance panel, change the Behavior from "Graphic" to "Button".
- Assign the following to the button instance. This Action tells Flash jump
to the labeled frame and turn off the menu should the user decide to go elsewhere
on the stage.
on (rollOver, rollOut) { gotoAndPlay ("Deactivate Nav"); }
| » Level Intermediate |
|
Added: 2001-01-16 Rating: 8 Votes: 129 |
| » Author |
| Jason Lampitt is an Interactive Developer for a major media development firm in Englewood, Colorado. He has a background in fine art as well as graphic design and has been developing multimedia titles for the past 6 years. Jason has a passion for bringing design to life through multimedia and helping others to understand the sometimes complex and confusing world of interactive development. In his spare time Jason is an active outdoorsman, mountain biker and family man. |
| » Download |
| Download the files used in this tutorial. |
| Download (42 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!