Ultra new to flash need help with buttons
I'm trying to create a Nav menu that has buttons that stays on a down state when clicked. I've seen on the forums that it'll be harder to do that on button so I made it a movie clip, however the action script on the movie clip only seem to work the first time. For Example if I click on "btn2" I can't go back to "btn1". Here's the code that I'm using
stop ();
Home.addEventListener (MouseEvent.CLICK,play11);
function play11(event:MouseEvent) :void{
gotoAndStop("Home");
}
Arrival.addEventListener (MouseEvent.CLICK,play12);
function play12(event:MouseEvent) :void{
gotoAndStop("Two");
}
Men.addEventListener (MouseEvent.CLICK,play13);
function play13(event:MouseEvent) :void{
gotoAndStop("Three");
}
Arrival and Home buttons seem to work fine but once I click on the "Men" button I can't click on Arrival anymore but I can however still click on home. Help?
