Hi,

replacing this code

lv = new LoadVars();
lv.onLoad = function()
{
mp3list = new Array();
var i = 0;
while (this["file" + i] != undefined)
{
mp3list[i] = this["file" + i];
i++;
}
}
lv.load("getmp3s.php");

by

mp3list = [_level0.mp3_path];

should populate the playlist with one song, and hopefully disable next track, randomize, or anything else that makes sense only with multiple songs

Musicman