help!

  • Started
  • Last post
  • 1 Response
  • Buckyball2

    On this homepage design, I have a drop down menu on rollover. It stays open on rollover and closes fine on rollout. But when it's open it won't recognize the 3 sub menu items. Which are their own buttons and have roller states and links.

    Example here. Rollover Solutions:
    http://adrenalineshot.com/AppVau…

    What is the best way to do this properly. I think the current problem is my code. It is treating the entire area, main button and down menu as one big hit area. Here is the code.

    on (rollOver, dragOver) {
    this.onEnterFrame = function() {
    if (this._currentframe != this._totalframes) {
    this.nextFrame();
    } else {
    delete this.onEnterFrame;
    }
    };
    }
    on (releaseOutside, rollOut, dragOut) {
    this.onEnterFrame = function() {
    if (this._currentframe != 1) {
    this.prevFrame();
    } else {
    delete this.onEnterFrame;
    }
    };
    }

    Any help anyone could lend would be greatly appreciated.

    Thanks

  • Buckyball20

    Really could use some help on this. Would anyone like to take a stab at it?

    thanks