i have set my timeline inside the movie clip up so that i have my frame labels for the up, over and out states. the problem i am having is that when the mouse moves over the movie clip it is not playing the animation.
i have set the script up on the main timeline so that the animation should play but it is not. the code i have used on the main timeline looks like this
this.prof_mc.onRollOver = function() {
prof_mc.gotoAndPlay("over");
};
this.prof_mc.onRollOut = function() {
prof_mc.gotoAndPlay("out");
};
i have put a on release function on the movie clip on the main stage and this is not working. when the movie clip is pressed once it is playing the over state from inside the movie clip and when it is pressed again it plays the out state of the movie clip which should not be happening.
the on release on the movie clips has been scripted like this
on (release){
gotoAndPlay("_about");
}
i have set up the timeline with frame labels for the individual pages with "_about" being one of the pages i have set up.
if someone could tell me where i have gone wrong that would be great as i have not a clue why it is behaving in this way.