intenta así:
Cita: function cargar(ruta:String)
{
borra();
//
var loader:Loader =new Loader();
//
loader.load(new URLRequest(ruta));
loader.contentLoaderInfo.addEventListener( Event.COMPLETE, completo );
//;
function completo( event:Event ):void
{
borra();
contenedor.addChild(loader);
}
}
function borra()
{
if (contenedor.numChildren > 1)
{
//
var l:int = contenedor.numChildren - 1;
for (var j:int = l; j >= 0; j--)
{
//
contenedor.removeChildAt(j);
}
}
}
es horrible código pero te servirá