i need to know how do i make a menu on flash but i dont want to load a hole new site evry time i go to a section so i wana get the codes for that
I’m not sure what you’re trying to do, but if I’m understanding you correctly, I think what you’ll need is to use IFRAMES and have your flash buttons linked to them so that it changes the content of the IFRAME and not the entire page itself.
You would need to apply an actionscript like this to your button:[AS]on (release){
getURL(“http://www.thisurlstuff.com”, “framename”);
}[/AS]
“framename” would be the name of the IFRAME you’re trying to target.
If you don’t know about iframes then take a look at this tutorial.
http://www.funky-chickens.com/frames2.html
All that is for a flash/HTML site, if you’re trying to build a full flash site then take a look at this tutorial.
http://www.kirupa.com/developer/mx/full_site.htm
I hope that is what you’re looking for, good luck. =)