# Sound

**URL:** https://forum.kirupa.com/t/sound/168990
**Category:** Uncategorized
**Created:** [November 11, 2005, 10:42pm UTC](https://forum.kirupa.com/t/sound/168990 "2005-11-11T22:42:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fruitpastles](https://avatars.discourse-cdn.com/v4/letter/f/73ab20/32.png) [@fruitpastles](https://forum.kirupa.com/u/fruitpastles)
#### Post date: [November 11, 2005, 10:42pm UTC](https://forum.kirupa.com/t/sound/168990/1 "2005-11-11T22:42:59Z")

</div>

im am using this script in my current movie to attach sound using acttion script it also has a stop/start button but i need to now how to add multiple sounds in this way.

the script is

mySound = new Sound();  
mySound.attachSound(“liabrarySound”)  
mysound.loop();

and the buttons  
on (release) {  
mySound.stop();  
}  
on (release) {  
mySound.start(1,100);  
}
