PDA

View Full Version : Flash drop down menus


sarahc
08-21-2002, 12:55 PM
I have made a drop down menu in a movie instance but I cannot use the go to action from the buttons within my menue to go to different scenes and scene lables. Does any one know a way around this??

Cheers

vosgien
08-21-2002, 01:02 PM
Hi,
If your buttons are inside an mc your code should address the _root :

on(release){
_root. gotoAndPlay("framelabel");
}

using ("scen", "framelabel") may give you problems, so just address the frame.

Hope that helps

Vosgien

sarahc
08-21-2002, 03:42 PM
Hurrah!! It works now

Thank you very much!!