So here's the situation: I have an XML file that is holding a short list of nodes, all of which have two attributes associated with name and a score. This file is already loaded into flash and creates a high-score table, of sorts.
Now, what I want to do is to be able to grab data collected in the application, use that to change some attributes in the XML file and have it save that change. As it is I can change the attributes using:
myXML.children()[t].@attr = attributeVariable;
Which seems to work while the application is still in session, but does not actually save those changes to the file itself as I am hoping for. Is there any quick and clean way of doing what I'm hoping to get done?