# Why sound do not loop?

**URL:** https://forum.kirupa.com/t/why-sound-do-not-loop/8280
**Category:** Uncategorized
**Created:** [November 17, 2002, 1:13pm UTC](https://forum.kirupa.com/t/why-sound-do-not-loop/8280 "2002-11-17T13:13:44Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![toh](https://avatars.discourse-cdn.com/v4/letter/t/f6c823/32.png) [@toh](https://forum.kirupa.com/u/toh)
#### Post date: [November 17, 2002, 1:13pm UTC](https://forum.kirupa.com/t/why-sound-do-not-loop/8280/1 "2002-11-17T13:13:44Z")

</div>

suppose using sound.start(0,999) will loop the sound for 999 times.  
when i load mp3 externally and want it to loop for many time by using below code:

bgSound = new Sound(this);  
bgSound.loadSound(“song.mp3”, true);  
bgsound.start(0, 99);

why the song do not loop? it only play for one time.

---

<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 17, 2002, 6:39pm UTC](https://forum.kirupa.com/t/why-sound-do-not-loop/8280/2 "2002-11-17T18:39:39Z")

</div>

i’ve just found out the solutions. just change the true value to false(not streaming). sorry for my stupidity.😛
