Hi Guys,
My first post here,
I have searched around but to no avail.
I have a 12 buttons. These buttons on rollover trigger a movie clip to play. the movie clip comes over the buttons which has to contain links. When you rollout over the button the movie clip plays in rewind. The problem is that when i go to click a link in the movie clip the movie obviously rewinds as i go to click the link and i am moving off the button.
Has anyone got any ideas as to a solution.
My .fla just goes over the file limit so i have a link here to view the swf.
http://www.core-design.eu/gavalves/index.html
This is my code on the first frame of the movieclip.
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
}
_root.circle3.onRollOver = function() {
rewind = false;
play();
}
_root.circle3.onRollOut = function() {
rewind = true;
}
Thanks