¿Es posible crear un getUrl que varie "al son" de un archivo.txt con variables?

me explico, mi idea es hacer un slideshow de videosyoutube, donde sea posible agregar o quitar videos en el tiempo sin tener que modificar el AS, solo agregar variables en un .txt y asi con un par de botones avanzar y retroceder en los videos.

¿Puedo hacer que de alguna manera flash busque las url de los videos (traídos de youtube) desde un archivo.txt?

loadMovieNum("http://www.youtube.com/v/"+variable,99);
//donde variable cambie segun el archivo.txt
mc = _root.createEmptyMovieClip("controlador",1000);
mc.nivel=99;
mc.onEnterFrame = function()
{
if (_level99._width>0 && _level99._height>0)
{

_level99._width=380;
_level99._height=300;

_level99._x=20;
_level99._y=147;
this.removeMovieClip();
}
}

¿como hacerlo?