Hey I created my flash website with Multiple scenes for each category/page. The problem I am having is placing the movie inside of a Button. When I put the movie clip inside of the button (I wanted a cool rollover effect) it won’t jump to the frame, but before I put the movie clip in the button it would goto the correct frame. Now the code for the Movie clip is:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
and when I remove the section of this.onRollOut and onRollOver the button works fine, but then the button doesn’t have a rollover effect. Can someone help me