I’m new to flash as well as this forum…so this may be an easy one. I have created a rollover effect that enlarges a movieclip when rolled-over and shrinks back when rolled-out. I used this frame action in the movieclip timeline:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
That works fine…but in the movieclip timeline I created other animations…graphic text, and image alpha-ing, etc…things that fade in with the enlarging of the movieclip. However, of course now all the graphics added to the mc timeline active the rollover effect because the size of the movieclip has expanded to encapsulate everything on that timeline.
Is there a way around this or is there another way to achieve this same effect.
Any help would be greatly appreciated…sorry if this is mundane.
Thanks,
Brandon