Sending data from flash to xml

[FONT=Times New Roman][SIZE=3][FONT=Verdana] Please HELP…[/FONT]Hi Dude’s, I followed an awesome tutorial on how to interact with flash and xml on the kirupa site, including save to xml from flash. I am though getting stuck on the last part. How do I get the swf file to override the xml file?? Please excuse my ignorance, but I’m new to this. this is what I got…[/SIZE][/FONT]

[SIZE=3][FONT=Times New Roman]my_xml.load(“http://www.doubleumedia.co.za/working_folder/xml/my_document.xml”);[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]trace(my_xml); // traces “undefined” ???[/FONT][/SIZE]

[SIZE=3][FONT=Times New Roman]var my_xml = new XML("<loss>We cannot perform well.</loss>"); [/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]trace(my_xml); // traces “<loss>We cannot perform well.</loss>” [/FONT][/SIZE]

[SIZE=3][FONT=Times New Roman]my_xml.firstChild.nodeName = “victory”; [/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]my_xml.firstChild.firstChild.nodeValue = “We dominate!”; [/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]trace(my_xml); // traces “<victory>We dominate!</victory>”[/FONT][/SIZE]

[FONT=Times New Roman][SIZE=3]// I need to be able to overide the xml file??[/SIZE][/FONT]