Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
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");
}
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.