# Sound loop

**URL:** https://forum.kirupa.com/t/sound-loop/34790
**Category:** Uncategorized
**Created:** [November 6, 2003, 2:03pm UTC](https://forum.kirupa.com/t/sound-loop/34790 "2003-11-06T14:03:24Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![hermsjr12](https://avatars.discourse-cdn.com/v4/letter/h/85f322/32.png) [@hermsjr12](https://forum.kirupa.com/u/hermsjr12)
#### Post date: [November 6, 2003, 2:03pm UTC](https://forum.kirupa.com/t/sound-loop/34790/1 "2003-11-06T14:03:24Z")

</div>

Hi,  
i was able to put sound on the flash page by linking them and by using the following script:

lib=new Sound();

lib.attachSound(“lib01”);  
\_root.lib.start(0,999);

but after the sound plays it loops again…how do i stop this loop

---

<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: [November 6, 2003, 2:18pm UTC](https://forum.kirupa.com/t/sound-loop/34790/2 "2003-11-06T14:18:44Z")

</div>

well then you **do not** want to loop it 999 times as you are doing now!

lib=new Sound();

lib.attachSound(“lib01”);  
\_root.lib.start(0, **1** );
