I am making a drop down menu in flash.
I have a small movie clip with the actionscript:
Code:
on(rollOver){
gotoAndPlay("over");
}
on(rollOut){
gotoAndPlay("out");
}
It simply fades in, or fades out the menu using frames that I have set in the movie clip.
This works fine, but when I try and add a button to the menu, it will either be unclickable (if inside the movie clip) or it will flip out, if it is laid on top of the clip.
Take a look
Any help would be much appreciated.