# Buttons are glitchy..please help

**URL:** https://forum.kirupa.com/t/buttons-are-glitchy-please-help/219693
**Category:** Uncategorized
**Created:** [March 19, 2007, 3:30pm UTC](https://forum.kirupa.com/t/buttons-are-glitchy-please-help/219693 "2007-03-19T15:30:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Realize\_Reality](https://avatars.discourse-cdn.com/v4/letter/r/a87d85/32.png) [@Realize\_Reality](https://forum.kirupa.com/u/Realize_Reality)
#### Post date: [March 19, 2007, 3:30pm UTC](https://forum.kirupa.com/t/buttons-are-glitchy-please-help/219693/1 "2007-03-19T15:30:16Z")

</div>

Hello…I’m new to the forum, so hello all.

Anyways. I’m having a bit of a problem with my movie clip buttons using action script.

Basically, it’s a rollOver rollOut kinda glitchy sort of problem.

It’s hard to explain so I’ve attached the .fla file.

Here’s the script also.

b1.onRollOver = over;  
b1.onRollOut = out;  
b1.buttonText.text1.text = “Home”;

b2.onRollOver = over;  
b2.onRollOut = out;  
b2.buttonText.text1.text = “Forms”;

b3.onRollOver = over;  
b3.onRollOut = out;  
b3.buttonText.text1.text = “Extentions”;

b4.onRollOver = over;  
b4.onRollOut = out;  
b4.buttonText.text1.text = “Shortcuts”;

b5.onRollOver = over;  
b5.onRollOut = out;  
b5.buttonText.text1.text = “E-mail”;

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

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

b1.onRelease = function() {  
getURL(“[http://home.northwoodsurology.com/Home.html](http://home.northwoodsurology.com/Home.html)”, “mainwindow”);  
}

b2.onRelease = function() {  
getURL(“[http://home.northwoodsurology.com/Forms.html](http://home.northwoodsurology.com/Forms.html)”, “mainwindow”);  
}

b3.onRelease = function() {  
getURL(“[http://home.northwoodsurology.com/extList.html](http://home.northwoodsurology.com/extList.html)”, “mainwindow”);  
}

b4.onRelease = function() {  
getURL(“[http://home.northwoodsurology.com/Shortcuts.html](http://home.northwoodsurology.com/Shortcuts.html)”, “mainwindow”);  
}

b5.onRelease = function() {  
getURL(“[http://northwoodsurology.net](http://northwoodsurology.net)”, “mainwindow”);  
}

Pretty Basic.

So if anyone can view and help me with my button problem I’d really appreciate it.
