Drop-Down Menu Problems

Hi,

I’m setting up a complex drop down menu, so that when you “rollover” a menu item on the menu bar a sub menu slides down underneath the bar giving you more buttons to choose. Now I managed to set up the animation so that the “rollover” works, and that the submenu button works.

My problem is how can do I script it that when I roll away from the sub menu or click a sub-menu item the secondary menu moves itself back up?

I’m attaching what I have so far.

You should made the animation a movieclip and then when you rollout just revers it. post your fla, so we can see how its done :slight_smile:

I am trying to make a menu something like gucci.com but my problem is this: the hit area for my button within a movieclip is interfering with my hitarea for the sliding bars. maybe this is the wrong way to approach this. can anyone help me? below is AS i have so far…

var bar1x = -162;
var bar2x = -228;
var speed1 = 30; // speed of box 1
var speed2 = 60; // speed of box 2
var speed3 = 10; // speed of text coming in / out
var textAlpha = 0;
text._alpha = 0;

var motionInterval = setInterval(checkBars,10);

theHitArea.onRollOver = function() {
//text._x = 3;
//text._y = 15;
bar1x = -2;
bar2x = -2;
textAlpha = 100;
}

theHitArea.onRollOut = function() {
bar1x = -162;
bar2x = -228;
textAlpha = 0;
}

function checkBars() {
bar1._x += (bar1x-bar1._x)/speed1;
bar2._x += (bar2x-bar2._x)/speed2;
text._alpha += (textAlpha-text._alpha)/speed3;
}

stop();

Wow [U]death by nines[/U], man… Please dont Hijack someone else’s tread!
Please, if you have a problem just start a new topic!

Oh, and welcome to the forums! :flower:

skyo sucks monkey balls!

thought it was related. …geez, man.