I’m using the Storm Mp3 player from active den but need help adding a function. I need it to send artist name and song to a text file. I’ve added the code below to the play function and it works like a champ. The issue is when I had this code to the IOError function, where the player skips to the next song, it does not send the info to the PHP script. I’m a novice to Flash so any help would be appreciated. I can provide the .fla file if needed.
//Record Played Song Info via PHP script
scriptVars.var1 = "1+" + String(aMP3Tracks[iCurrTrack][1] + "+" + aMP3Tracks[iCurrTrack][2]);
scriptVars.var2 = (scriptDate);
scriptRequest.method = URLRequestMethod.POST;
scriptRequest.data = scriptVars;
scriptLoader.load(scriptRequest);
//End of Record Played Song Info via PHP script