# Frames

**URL:** https://forum.kirupa.com/t/frames/28009
**Category:** Uncategorized
**Created:** [August 8, 2003, 8:34pm UTC](https://forum.kirupa.com/t/frames/28009 "2003-08-08T20:34:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![JJH35](https://avatars.discourse-cdn.com/v4/letter/j/278dde/32.png) [@JJH35](https://forum.kirupa.com/u/JJH35)
#### Post date: [August 8, 2003, 8:34pm UTC](https://forum.kirupa.com/t/frames/28009/1 "2003-08-08T20:34:22Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 8, 2003, 8:38pm UTC](https://forum.kirupa.com/t/frames/28009/2 "2003-08-08T20:38:31Z")

</div>

Apply a getURL script that will target the frame, something like this:

```auto
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.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 8, 2003, 8:39pm UTC](https://forum.kirupa.com/t/frames/28009/3 "2003-08-08T20:39:49Z")

</div>

[AS]on(release){  
getURL(“[http://www.yoursite.com/yourpage.html](http://www.yoursite.com/yourpage.html)”, “frametitle”);  
}[/AS]

[http://www.macromedia.com/support/flash/action\_scripts/actionscript\_dictionary/actionscript\_dictionary377.html](http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary377.html)

EG beat me 😛
