Hi, i have searched the web for days with no luck but i thought some of the flash gurus on this forum could help me =-)
I have an xml file which contains this,
Code:
<partOne>
</partOne>
Its basicaly empty.
However in flash it loads the xml into a variable, myXML.
I then have three variables in flash that i want to put into the xml file so if i traced the myXML from flash it would look like this,
Code:
<partOne>
<partTwo>
    <infoOne> variableOne </infoOne>
    <infoTwo> variableTwo </infoTwo>
    <infoThree> variableThree </infoThree>
<partTwo>
</partOne>
and after i run the code again it looks like this,
Code:
<partOne>
<partTwo>
    <infoOne> variableOne </infoOne>
    <infoTwo> variableTwo </infoTwo>
    <infoThree> variableThree </infoThree>
<partTwo>
<partTwo>
    <infoOne> variableOne </infoOne>
    <infoTwo> variableTwo </infoTwo>
    <infoThree> variableThree </infoThree>
<partTwo>
</partOne>
Thanks for your time and i hope you can help me
Chris