How i can load flv player movie to my flash+xml site?

Hi,

I have a flash+xml template . Unfortunately I can’t add links to forum. But You can find that template at Flashden website, the name of that template is “Minimal xml template v1”

In the first panel AboutUs page with text
I want modify it a little - I have a ready flash palyer and want change uploaded text to flv player movie (file preview.swf in the same folder)

Of course I need everything works tha same as default (when I’ll click to close button - clear window with flv player, stop video and sound in flv player)

Now Aboutus text is loading to “Box1” movie clip in the text field “details_txt”.
here you can see full AS code for xml text loading

//Load XML
//text instance name - details_txt
details_txt.html = true;
details_txt.wordWrap = true;
details_txt.multiline = true;
my_xml = new XML();
//XML file and path
my_xml.load("aboutus2.xml");
my_xml.onLoad = my_function;
my_xml.ignoreWhite = true;
function my_function() {
    //text instance name - details_txt - can handle HTML tags
    details_txt.htmlText = my_xml.firstChild.childNodes[0].firstChild.nodeValue;
}

Code of text xml file

<?xml version="1.0" encoding="windows-1251" standalone="yes"?>
<item>
         <item><![CDATA[<b><font size="50" color="#ffffff">About</font></b><font size="50" color="#FFCC00">Us</font><br><font size="10" color="#999999">
Here just some text.Here just some text.Here just some text.Here just some text.Here just some text.Here just some text.Here just some text.Here just some text.
</font></item>
</item>

how change default code? I don’t need text here. I need here flv player (I have it as preview.sf file)

I’ve tried edit XML code (add preview.swf to content)
and tried edeit AS in FLA source file. But it doesent work…

I’m not a programmer. I’m an animator. And AS is hard for me… Can somebody help me make this changes?