# Streaming sound question

**URL:** https://forum.kirupa.com/t/streaming-sound-question/50136
**Category:** Uncategorized
**Created:** [April 29, 2004, 5:16pm UTC](https://forum.kirupa.com/t/streaming-sound-question/50136 "2004-04-29T17:16:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![macneilslt](https://avatars.discourse-cdn.com/v4/letter/m/aeb1de/32.png) [@macneilslt](https://forum.kirupa.com/u/macneilslt)
#### Post date: [April 29, 2004, 5:16pm UTC](https://forum.kirupa.com/t/streaming-sound-question/50136/1 "2004-04-29T17:16:26Z")

</div>

i’m using this to load a streaming sound into my site

```auto

loop = new Sound();
loop.loadSound("niceLoop.mp3", true);

```

Is there any way to make it loop?  
how come:

```auto

On(release) {
loop.stop();
}

```

works, but:

```auto

on(release) {
loop.start();
}

```

does not??

i just want a simple streaming loop with a play/stop button for the bkg on my site…
