I've purchased a Flash website for my radio station www.SSSVibez.com. The flash website has an mp3 playing in the background when you open it. The code looks as such:
var mysound = new Sound();
_root.mysound.onLoad = function (loadedOK)
{ if(loadedOK)
{_root.mysound.start(0,9999);}
}
_root.mysound.loadSound("music.mp3", false);
Which works fine but I want my radio stream to play instead of an MP3 file and I don't know how to go about it (it's been a while since I used Actionscript. Note it's built on Actionscript 2.0.