Hello. I have recently run into a problem. I have been designing a new webpage and began using a new technique of creating roll over menus by creating movie clips with the code of :
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
} else {
this.prevFrame();
}
}
as an action. The problem I have run into is that when I put buttons inside the movieclip, the actions for the buttons don’t seem to work. The little hand comes up meaning that the cursor sees it as a button, but still won’t go to the scene I want it to when clicked. If anyone has any suggestions on how I can get the buttons to work inside the movie clips, I would greatly appreciate it.
Thanks,
Matt