Hey there :gm:
I’ve got a little problem with a slide out menu I’m building with nested movie
clips that have onRollover events. My problem is that the menu slides out
fine but I’m not to sure how i would do onRollOut for th menu.
I would deeply appriciate some help.
**::My code on first frame::
**#include “mc_tween2.as”
this.stop();
panel.onRollOver = navOver;
function navOver(){
this.onEnterFrame = slideNav;
delete this.onRollOver;
}
function slideNav() {
this.yO = this._y;
this.slideTo("_y", this.yO - 102, 0.5,“easeInOutQuart”);
delete this.onEnterFrame;
}
Thanks in advance.
Charl.