# Movie clip buttons - problems

**URL:** https://forum.kirupa.com/t/movie-clip-buttons-problems/213252
**Category:** Uncategorized
**Created:** [January 18, 2007, 3:34am UTC](https://forum.kirupa.com/t/movie-clip-buttons-problems/213252 "2007-01-18T03:34:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![frzn](https://avatars.discourse-cdn.com/v4/letter/f/4da419/32.png) [@frzn](https://forum.kirupa.com/u/frzn)
#### Post date: [January 18, 2007, 3:34am UTC](https://forum.kirupa.com/t/movie-clip-buttons-problems/213252/1 "2007-01-18T03:34:47Z")

</div>

i built a set of very nice looking movie clip buttons following the tutorial from [gotoAndLearn.com](http://gotoAndLearn.com)

they look fantastic but they are not serving their purpose. my over and out functions work as they should, so does the button text, but linking refuses to work.

```auto

b1.onRollOver = over;
b1.onRollOut = out;
b1.buttText.buttonText.text = "07 portfolio"
b1.onRelease = link1;

function over() {
     this.gotoAndPlay(2);
}

function out() {
     this.gotoAndPlay(12);
}

function link1() {
     getURL("http://www.frozenweb.net", "_blank");
}

```

i am not getting any syntax errors so i’m not sure what’s wrong here. any ideas?
