Frame Labels

:hobbes:

ok so just a simple question. im creating a siple site in flash and have all my navigation and buttons on Frame 2. can anyone tell me how i can put buttons into different frame labels? heres my problem

like i said i have all my buttons on frame 2. im creating a real estate site and i have to have a couple links like HOME ABOUT BUYING SELLING CONTACT, the thing though is that in the BUYING and SELLING frames i want to add more sections and links but only on these 2 other parts of my site. when i code it though my movie plays over and ver and over non stop. heres my coding…

frame 1
my preloader

frame2

home_btn.addEventListener(MouseEvent.CLICK, onHome)
function onHome(event.MouseEvent):void
{
gotoAndStop(“home”);
}

about_btn.addEventListener(MouseEvent.CLICK, onAbout)
function onAbout(event.MouseEvent):void
{
gotoAndStop(“about”);
}

etc…

etc…

and i put my link im trying to get to in a different frame here but the movie plays over and over again