Problem
I’m currently working on a project where i need to load data off an xml file on a server (local to the flash swf file). Ideally I want to use some of the flash UI components to display and edit the data (to save me from having to make my own). I’m kinda learning as I go - at the moment I know how to load XML from a file into an XML object - using for example my_xml.load(“a.xml”). I’m not sure what to do with it after I have loaded it into flash, how can i connect this to my UI components (mainly combo box, list and datagrid components)?
Is there a better method for loading the XML originally?
Other criteria of my project you may want to consider when awnsering:
Ability to edit and re-save the xml to the original file on server
Ability to upload xml files from user’s local machine to server -> have code for uploading picture files to server so should be able to adapt this
Ability to save xml files from flash (probably via server) to user’s local machine -> think i know how i can do this, saving the files to server (via php) then allowing user to dl from there