# Linking buttons. HELPP!

**URL:** https://forum.kirupa.com/t/linking-buttons-helpp/113462
**Category:** Uncategorized
**Created:** [June 18, 2004, 6:14am UTC](https://forum.kirupa.com/t/linking-buttons-helpp/113462 "2004-06-18T06:14:22Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![hotwireddriveby](https://avatars.discourse-cdn.com/v4/letter/h/97f17d/32.png) [@hotwireddriveby](https://forum.kirupa.com/u/hotwireddriveby)
#### Post date: [June 18, 2004, 6:14am UTC](https://forum.kirupa.com/t/linking-buttons-helpp/113462/1 "2004-06-18T06:14:22Z")

</div>

hi. when i try to link buttons. i click get URL. and the fields that should pop-up. if you want to see what i taliking about, its step number 2 in [this](http://www.kirupa.com/developer/flash5/buttonlink.htm) tutorial

thank you

---

<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: [June 18, 2004, 6:45am UTC](https://forum.kirupa.com/t/linking-buttons-helpp/113462/2 "2004-06-18T06:45:06Z")

</div>

Step number two… that’d be:

> [font=Arial][size=2]Once you select Get URL, you will see the current Object Actions window display the various fields for creating and modifying a URL (Uniform Resource Locator).[/size][/font]

Right? I’m just guessing here, since you don’t really tell what doesn’t work, but that tutorial is made for Flash 5. And I assume you’re using mx2004, where you’ll have to edit code in expert mode… So by hand.

The code would be this:

```auto
on (release) {
 	getURL("http://www.kirupa.com", "_blank");
 }

```

Modfiy the address to suit your purposes and leave the “\_blank” away if you don’t want to open it in a new window.

Hopefully helps… I’m just guessing here 😃

---

<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: [June 18, 2004, 7:48am UTC](https://forum.kirupa.com/t/linking-buttons-helpp/113462/3 "2004-06-18T07:48:04Z")

</div>

im also using frames too. how woul di get it to load in a certian frame?

---

<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: [June 18, 2004, 7:56am UTC](https://forum.kirupa.com/t/linking-buttons-helpp/113462/4 "2004-06-18T07:56:37Z")

</div>

If you’re referring to frames of a html document (and not the frames in your .swf 😛 ), use simply the name of the frame instead of “\_blank”.

Just make sure you write it correctly, i.e without quotes and a leading underscore.

Edit: [A Macromedia technote.](http://www.macromedia.com/support/flash/ts/documents/get_url.htm#frname)
