I want an animation to play on a rollover, and stop if the cursor is still on the button, and then play a different animation on roll out. Based on another button I used, I got the animation to work...
on (rollOver) {
btnPlay = true;
play();
}
on (rollOut) {
btnPlay = false;
play();
}
While the animation works, I can't get a goto to another frame or scene to work without the animation not working anymore. However, a getURL works fine with the animation? Any tips? I tried to use a tell target but that didn't work either. Thanks for your help. To get an idea of what the buttons do, check out this link...
http://jupiter.millikin.edu/~rmconra...nts.mu/pantel/

thanks