Thread: Flash help
View Single Post
Old 10-18-2004, 08:03 AM   #1 (permalink)
silver26
Insane
 
Flash help

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.
__________________
I know I was born and I know that I'll die, the inbetween is mine.
silver26 is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60