ok, im not makin a fullpage in flash, i am just makin a nav bar, so i want when i push the button it opens in the bottom frame, like where the nav bar is up top all the time, is there somethin in the actions i have to do to make it just open the bottom frame, not into a new window and so on
Apply a getURL script that will target the frame, something like this:
on (release) {
getURL("http://www.yoursite.com/main.html","frame_name_here");
}
Just fill in your url and the name of the frame you’re trying to target. Apply this script to your button and you’re done.
[AS]on(release){
getURL(“http://www.yoursite.com/yourpage.html”, “frametitle”);
}[/AS]
EG beat me