I call the video like this:

var my_player:Object;
var my_loader:Loader = new Loader();
my_loader.load(new URLRequest("http://www.youtube.com/v/TXrc6BwGCXE?version=3"));
my_loader.contentLoaderInfo.addEventListener(Event .INIT, onLoaderInit);

function onLoaderInit(e:Event):void{
addChild(my_loader);
my_player = my_loader.content;
my_player.addEventListener("onReady", onPlayerReady);
}

function onPlayerReady(e:Event):void{
my_player.setSize(535,328);
my_player.x=270;
my_player.y=30;
my_player.cueVideoById("xxx",0);
}
And inside a function I have:
my_player.destroy();

But it doesn´t work and it's driven med crazy!

Thz in advance