Ok, so I have what will hopefully be a fairly simple question to answer. I have a small navigation bar with several movieclipbuttons, and I have the animation set up pretty much how I want it for each button, however, my question is, is there any actionscript that would allow me to tell the movieclip button not to go back to start a new animation until the previous one has finished; in other words, I have it so that when you rollover the button it animates and when you rollout in animates back again, I want to make it so that if you rollover the button while it’s still doing its rollout animation it wont go to the rollover animation until after it’s finished doing the rollout animation.
I hope that makes sense. Anyway, I’ll include one of the button scripts just to give you an idea of what I’m doing
this.icon1_mc.onRollOver = function() {
icon1_mc.gotoAndPlay("_over");
icon2_mc.gotoAndPlay("_overleft1");
icon3_mc.gotoAndPlay("_overleft2");
icon4_mc.gotoAndPlay("_overleft3");
icon5_mc.gotoAndPlay("_overleft4");
}