I need help, i can't get this stupid playlist to start onload

if anyone is willing to help, i sure could use it…

I’ve been working on this thing for ever!!! I got it to finally play the song onclick of the artist name in the playlist… But now it wont play onload, and then when the song is done, it won’t go on to the next song… :frowning:

Below is the script I think that is causing all my trouble… but I could be wrong…

var snd = this.createEmptyMovieClip(“SoundController”, 1);

snd.init = function(){
snd._sound = new Sound(this);
this.isPlaying = true;
this.position = 0;
loadingbar_mc._xscale = 0;
progressbar_mc._xscale = 0;
}
snd.loadSound = function(url){
this._sound.loadSound(url, true);

}