I am nearing completion of week 1 of my crash course in Flash. I figured out how to make easing menus w/ rollover / rollout but now that i’ve applied the actionscript to the menu the button states on the easing menu no longer work … what do I do to fix this ?
THE CODE I HAVE ON THE MOVIE CLIP:
onClipEvent (load) {
_x = 20;
speed = 5;
}
onClipEvent (enterFrame) {
_x += (endX-_x)/speed;
}
on (RollOver) {
endX = 211;
}
on (RollOut) {
endX = 20;
}