# Could someone show me How!

**URL:** https://forum.kirupa.com/t/could-someone-show-me-how/28231
**Category:** Uncategorized
**Created:** [August 11, 2003, 5:40pm UTC](https://forum.kirupa.com/t/could-someone-show-me-how/28231 "2003-08-11T17:40:07Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Ronnie\_Rokk](https://avatars.discourse-cdn.com/v4/letter/r/d9b06d/32.png) [@Ronnie\_Rokk](https://forum.kirupa.com/u/Ronnie_Rokk)
#### Post date: [August 11, 2003, 5:40pm UTC](https://forum.kirupa.com/t/could-someone-show-me-how/28231/1 "2003-08-11T17:40:07Z")

</div>

I’m stumped!!! My question is how to I make a button or word work like so.

I want the customer to be able to mouse over a sound, but when you take the mouse off of the button or word the sound will stop.

I own a guitar loops site and I’m using the mouse over technique now, but if they hit more then one button at a time the sounds play all at once causing jumbled sounds together.

Can someone help me please??

Thanks,

Ronnie Rokk

---

<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 11, 2003, 5:44pm UTC](https://forum.kirupa.com/t/could-someone-show-me-how/28231/2 "2003-08-11T17:44:08Z")

</div>

post in the flash forum.

---

<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 11, 2003, 5:44pm UTC](https://forum.kirupa.com/t/could-someone-show-me-how/28231/3 "2003-08-11T17:44:39Z")

</div>

real quick there are tons of posts on the forum on this

```auto

x=mySound();
x.attachSound("guitar");
Button.onRollOver = function(){
x.start(0,1) // loops once
}

```

```auto

Button.onRollOut = function(){
x.stop();
}

```

woah that was quick but something like that should work,  
just make sure to go to link the sound in your library. btw shouldn’t this be in the flash section???
