Conflict between two mc buttons

Hi,
I’m just a beginer with actionscript, in this case actionscript 2.
I have two mc buttons mc_one and mc_two. When I click on mc_one apear a submenu, and when I click on mc_two apears another submenu in the same place than the mc_one submenu.

I know how to make disapear the previous submenu by tell _visible = false, but I also want to finish and bring back the submenu in their initial position in order to not to wait that the function finishes for open the new one.

Maybe something like null or reset the function that make the other submenu turn up with no problems.

I hope all of that make sense, and thank you,
Gemma

Hello for first time to everyone!
It is my first time in a forum… I m just a graphic designer trying to understand the basics of this actionscript lenguage, that is far away from my figurative based brain capacities.

Thank you very much for your help!
Gemma

kirupa has a drop down menu example full working…

i don’t get how you have a drop down opening ontop of and old/present one.

I think I get the answer:

delete this.onEnterFrame;

Is something like it but with a submenu of 6 buttons instead of 1 :

// Call functions for english button
function engRight() {
edraw.onEnterFrame = subeRight;

// Stop activity on german submenu
delete gdraw.onEnterFrame;

// Declare variables to start point position
gdraw._x = 145;
gdraw._alpha = 0;

// Call functions for german button
function gerRight() {
gdraw.onEnterFrame = subgRight;

// Stop activity on english submenu
delete edraw.onEnterFrame;

// Declare variables to start point position
edraw._x = 145;
edraw._alpha = 0;

//Call previous functions on release the buttons
ework.onRelease = engRight;
gwork.onRelease = gerRight;

Thank you to respond me!
Gemma