Hi
I was just wondering if anyone has come across this issue. Basically i have 3 buttons on stage. each with this simple piece of code to animate the buttons:
button1.onRollOver = function () {
this._width = 104;
this._height = 194;
this._alpha = 100;
};
button1.onPress= function () {
gotoAndPlay (2);
};
button1.onRollOut = function () {
this._width = 102;
this._height = 190;
this._alpha = 50;
};
When a button is pressed it goes to another frame which plays a fade out animation on the buttons. Whats happening on my timeline is that for some reason the when you rollover the active buttons and select one, all the buttons that you rollover stay on stage and dont fade out as its supposed to in the animation? I tried doing up another quick test and using simple square shapes and i got it that to work, but i cant seem to fix this on my actual project file. I do have other scripts running so it could be that they are interfering with the overall thing. Has anyone come across this that could help me solve this? Thanks in advance!
Cheers!
Posted about 1 month ago