Hi,
I’ve got a movieclip that is acting as a button. When the mouse rolls over the button and animation (alpha fade in) runs when the mouse rolls out another animation runs (alpha fade out). Problem is the animation will freeze and not finish if the mouse is rolled out before the roll over animation is complete.
How can I get the full over and out to run regardless of removing the mouse before over is complete?
Code is…
for the mc…
[AS]next_mc.onRollOver = function() {
this.gotoAndPlay(“over”);
}
next_mc.onRollOut = function() {
this.gotoAndPlay(“out”);
}[/AS]
in the mc there is a lable layer with over and out and alpha tweens for each.
Not sure if this is clear but any suggestions would be helpful.
Fed