Truveo api + AS3 plssss help

Hi friends,

i am using truveo api in flash cs3 now, if i use the give truveo flash api am getting error that XMLNode is not a compile time constant, i couldnt solve it, so decided to go to XML api, there i am having the url string as

http://xml.truveo.com/apiv3?appid=b4aba9a123e2261c2&method=truveo.videos.getVideos&query=Cat&results=5&start=0&showRelatedItems=1&tagResults=10&channelResults=10&categoryResults=10&userResults=10&showAdult=0

when i put this url in my browser i get a xml file as expected, but in flash i use the following code

var aol_loader:URLLoader = new URLLoader();
aol_loader.addEventListener(Event.COMPLETE, aol_picsLoaded);

var aol_request:URLRequest = new URLRequest(aol_xml_url);
aol_loader.load(aol_request);

function aol_picsLoaded(e:Event):void
{
var pics:XML = new XML();
var picsLoader:URLLoader = URLLoader(e.target);
pics = XML(picsLoader.data);

trace(pics);

}

where the aol_xml_url is the url i gave above…

what wrong am doing… i am getting the error as the url cannot be opened, its getting in browser, but in flash its not opening, what wrong am doing… pls i have to get this within tomo, its very urgent, pls help frnds… below s the error i get

Error opening URL ‘http://xml.truveo.com/apiv3?appid=b4aba9a123e2261c2&method=truveo.videos.getVideos&query=Jennifer+Lopez&results=5&start=0&showRelatedItems=1&tagResults=10&channelResults=10&categoryResults=10&userResults=10&showAdult=0
Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://xml.truveo.com/apiv3?appid=b4aba9a123e2261c2&method=truveo.videos.getVideos&query=Jennifer+Lopez&results=5&start=0&showRelatedItems=1&tagResults=10&channelResults=10&categoryResults=10&userResults=10&showAdult=0
at Untitled_fla::MainTimeline/Untitled_fla::frame1()

what am i doin wrong frnds… pls tel me