Flash Search Engine

[size=2]Have any of you had any luck creating a Flash search feature which allows you to type in a keyword in Flash- submit it to a search algorithm which returns a dynamic xml page- and then parse that dynamic xml page to display the results. I’ve got it working to the point that I can hit the search algorithm and get the dynamic xml page to be created but I need a way to target that dynamic xml content to a xml object in my Flash file. Is there a way to send a variable to a url and have it the response target an xml object in your file?

I’ve tried the my_xml.sendAndLoad where I target another xml object for the response but I can’t seem to get it to work.

[/size]

the sendAndLoad function is to send a xml as a string variable with the post method to a external file, like a php file.

I need a way to target that dynamic xml content to a xml object in my Flash file
this is the way:

yourNewXmlContent = (some xml string);
myNewXml = new XML(yourNewXmlContent);