Actionscript on buttons nested in movie clip

I need help. I’ve created a movie clip which in essence is like a drop down menu (I’ve got a main button and when the user hovers over it other buttons drop down from it - and I’ve got an off trigger and all that good stuff). So I’ve dropped an instance of this movie clip into a Flash movie and now I’m trying to apply actions to each button within the movieclip so that they will take the user to specific frames within Scene 1 of my movie.

Now according to the instructions that told me how to create the drop down menu - I’ve got to "use a with() action to navigate to other timelines. I’ve tried it and it doesn’t work. I guess I’m not sure what parameters to use the with action with.

I’m fairly new to Flash and Actionscript is definitely not my forte so be gentle with me. Any advice or words of wisdom would be appreciated.

(-:

try this on your button.



on (release)  {
    _root.gotoAndPlay("your scene", frame number);
}


If I understand you correctly

You need to tell it to play a movie that is on the maintimeline. That is what _root does

http://www.kirupaforum.com/showthread.php?s=&threadid=10784