# Loop you stupid streamed song! ARG!

**URL:** https://forum.kirupa.com/t/loop-you-stupid-streamed-song-arg/227174
**Category:** flash
**Created:** [May 28, 2007, 5:15am UTC](https://forum.kirupa.com/t/loop-you-stupid-streamed-song-arg/227174 "2007-05-28T05:15:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Bloodshed](https://avatars.discourse-cdn.com/v4/letter/b/839c29/32.png) [@Bloodshed](https://forum.kirupa.com/u/Bloodshed)
#### Post date: [May 28, 2007, 5:15am UTC](https://forum.kirupa.com/t/loop-you-stupid-streamed-song-arg/227174/1 "2007-05-28T05:15:16Z")

</div>

I have made it so a small song streams in flash, I have also made stop and play buttons.

Stream code (which I have placed on a text box):

```auto
onClipEvent (load) {
     mySound = new Sound();
     mySound.loadSound("songofdaday.mp3", true);
     mySound.onLoad = function(){
          mySound.start(0, 99);
     }
}

```

Play Button Code:

```auto
on (release) {
  _root.DLbox.mySound.stop();
  _root.DLbox.mySound.start(0, 99);
}

```

It all works flawlessly apart from the ickle fact that it doesn’t loop :-/ :puzzle: :crying: .  
Can anyone tell me why it isn’t looping?  
I have searched the forums for solutions and all I managed to summise was to add

```auto
mySound.onLoad = function(){
          mySound.start(0, 99);
     }

```

Which hasn’t made a difference \>.\<
