A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: Looping Streaming Sound

  1. #1
    Junior Member
    Join Date
    Aug 2002
    Posts
    29
    I got it to load in the sound and stream it, but using Audio.start(0,20); dosn't make it loop when its done, how do i go about doing this?
    Thanks in advance.

  2. #2
    NerdInside's Avatar
    Join Date
    May 2001
    Location
    Penguin Island
    Posts
    3,439
    I don't think it will loop seamlessly.

    You could use.

    mySound.onSoundComplete = function() {
    mySound.start();
    }

  3. #3
    Junior Member
    Join Date
    Aug 2002
    Posts
    29
    where would i put that? my sound is loaded from a button?

  4. #4
    Junior Member
    Join Date
    Aug 2002
    Posts
    29
    i tried putting that in a movie clip i have running in the backround, didnt seem to work.

  5. #5
    NerdInside's Avatar
    Join Date
    May 2001
    Location
    Penguin Island
    Posts
    3,439
    Make a layer that has a frame that goes across the HOLE movie. Then add these actions to the frame:

    mySound.onSoundComplete = function() {
    mySound.start();
    }

  6. #6
    Junior Member
    Join Date
    Aug 2002
    Posts
    29
    WOO, thanks man, worked like a charm.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center