Hi,
I am streaming an MP3 file and would like to know how to have it repeat when the file is finished playing through.
Below is the code i’ve used:
var game_sound:Sound = new Sound();
game_sound.onLoad = function(success:Boolean):Void {
if (success) {
trace(“Sound Loaded”);
game_sound.start();
}
};
game_sound.loadSound(“http://www.domainname.com/test/cf_whenthesunlovesthetrees.mp3”, false);
Thanks in advance,
tackafive