LOOP THIS
- Started
- Last post
- 14 Responses
- zoiks
how can I get loaded sound to loop with this as?
- zoiks0
Basically I just need to load an external sound an have it loop.
- zoiks0
Thanks, but I don't want to have to export the sound for as. That causes the sound to embed in the movie. I want to load external sound and make it loop.
I have used Kenny alot already, but I couldn't find this specific application. Maybe I am missing something.
thanks
- ********0
wait what do you want to do exactly?
- ********0
what you are going to have to do is use something like that Kenny thing using XML and then make sure you have it set to play the same sound over and over or externally take a loop and run it X many times. If unfit is here he will have your solution.
- zoiks0
I have an external mp3.
When a button is pushed, I want that external sound to load start looping.
- zoiks0
thanks JazX. I will check that out.
I think my last post was out of sync in this thread.
- ********0
BTW, mp3's don't loop well. You can do it, but when you export as one there is always a small skip, always stick to .wav unless you are planning on fading the .mp3 in and out. good luck :)
- zoiks0
Thanks for the tip. I realy appreciate it!
If anyone sees unfit, please put him on my trail...
Thanks
- zoiks0
anyone seen unfit?
- ********0
you need to read that article by Kenney Bellew or whatever and then ask us some questions, that should explain it al. Simply put you can use XML to retreive the .mp3 you want to loop or .wav if need be.
- unfittoprint0
use onSoundComplete.
[for streaming sounds]
mySound.onSoundComplete = function(){
mySound.load("samemp3.mp3", true);
}
- ********0
whamo the Lord has spoken
- zoiks0
big thanks!
I will do it.