Movie Clips controlling movie clips, problem

Hello.

I’ve been trying to make some drop down menus for awhile and I’ve run into a snag.

I have a button that when you roll over it, a movie clip appears [jumps to frame 2, frame 1 is blank.] This mc is the drop down menu. The drop down menu mc consists of other buttons that when you roll over them they stay green, but all other buttons go blue. [done by making certain mc jump to frame 2 and others jump to frame 1 to dissappear.]

So this all works fine.

My problem now comes when I try to attach on (release) functionality to the buttons inside the drop down mc. I have the following code on one of the buttons inside the 1st drop down menu:

[COLOR=sienna]// Drop down menu colour changes.[/COLOR]
[COLOR=blue]on (rollOver) {
_parent.about.gotoAndStop(1);
_parent.what_about.gotoAndStop(1);
_parent.what_else_about.gotoAndStop(1);
_parent.where_about.gotoAndStop(2);
}[/COLOR]
[COLOR=SIENNA]// Trying to get wherewestarted movie clip to jump to frame 2 on release.
// Also making other movie clips jump to frame 2 to dissapper.[/COLOR]
[COLOR=BLUE]on (release) {
_parent.wherewestarted.gotoAndStop(2);
_parent.mainlogo.gotoAndStop(2);
_parent.address.gotoAndStop(2);
}[/COLOR]

So the on (rollOver) part workds great, and I’m quite pleased with the resluts… however when you click a button in the menu, nothing happens. No movie clips appear, or dissappear. I’ve tried it without using _parent, I’ve tried _root… I just don’t know what to do.

How can I get a rollover AND a release action?

Help!!

:slight_smile:

DryCow