hello, I am loading external data from ASP with song info including mp3. Everything is working great but I would like to use onSoundComplete to reload ASP data for a new song..
so when the songs done it plays a new one (or reload data from the ASP).
-----------------
function () {loadVariables ("flashplay.asp", this)};
-----------------
this line is not cut'n it, any ideas

code:
onClipEvent(data)
{
strArtist = Artist;
strAlbum = Album;
strSongnum = Songnum;
strsongname = songname;
strSong = Song;
strSongTot = SongTot;
stralbumid = albumid;
stralbEnd = albEnd
mySound = new Sound();
mySound.loadSound(strSong,true);
mySound.onSoundComplete = function () {loadVariables ("flashplay.asp", this)};
}
onClipEvent(load)
{
sn = 1;
loadVariables ("flashplay.asp", this);
}