a mi me funciona:
Cita: var playlist:Array = new Array();
//
var lv:LoadVars = new LoadVars();
lv.load("playlist.txt");
lv.onLoad = function(exito:Boolean)
{
if (exito)
{
playlist = this.video.split(",");
ver();
}
};
//
function ver()
{
trace(playlist[0]);
}
la funcion ver(), muestra el primer video de tu archivo de texto, pruebalo.