Flash Navigation
- Started
- Last post
- 6 Responses
- gpop
Does anyone have any resources to flas to develop a nav similar to the link? Needs to be a 'on rollover fade in subnav'
- kinetic0
that's pretty easy
on the root, you have all the buttons
then you have a movieclip that contains your sub navigation....different frames contain the different sub navs, just separate them by keyframes and put labels on the frames
then, on your main buttons do
buttonName_btn.onRollOver = function() {
subNavMovieClipContainer_mc.goto...right?
- gpop0
and a little bit more confusing to add the down states no doubt!
- kinetic0
if you wanted it exactly like his where when you rollover if you're not on the sub menu it goes back to the default "calendar"
you could do something like a quick check for the _root._xmouse onRollOut ... if it is above or below a certain area, then tell the subMenuContainer_mc to gotoAndStop("default") or whatever.
- gpop0
haha.. computing....computing.. okay, I think you mean
'on rollover nav button 1 it activates the sub nav mc at frame 01 and upon rolling over the area of the subnav mc frame 01 it remains active - but rolling away from subnav mc frame 01 (for example above or below this sub nav area) it returns the subnav mc to frame 00 (which happens to be the 'blank' subnav frame).
If so, it sounds about right, but I have never tried anything with xmouse (which i presume is an x and y area indicator?)
help me obi wan kinobe!
- gpop0
probably easier with visual reference:
http://www.studio-gpop.com/art/h…
you'll see collections has a roll off on the main nav collection button, what I need ot to do is only have a roll off on any over area except the main nav collection buton and along the sub nav area (where the sub nav text is shown) - the same will apply to each nav section but i think one is the aim for todays lesson!!
- gpop0
any ideas?