I want to create a button (although I’ve done it by making a Movieclip) that fades in a graphic on rollOver, and out on rollOut.
I’ve created a movieclip that fades from 0% to 100% alpha, and then back to zero.
I’ve then put the following script on the clip…
on (rollOver)
{
this.gotoAndPlay(2);
}
on (rollOut)
{
this.gotoAndPlay(11);
}
It functions ok, but if I roll over and out of the MC too quickly, the graphic stays at 100% alpha, rather than fading back to 0%.
Anyone know how I can overcome this? Would I be better creating a button rather than a Movieclip?
Thanks.