> I have a project that involves xml... I am wondering how I should > organize my xml... would it be best (from a flash perspective) for it to > be on huge xml file with lots and lots of children - or would I be > better off breaking it into multiple xml files where one xml tag > references another xml file and so on...
There is no hard and fast answer. My personal preference is to have fewer XML files--one is ideal, because then you only have one to download. And XML files are just text, so it typically takes less time than a single audio file. If you're using AS3, you can use the XML and XMLList classes to break the file into manageable chunks. It's very fast. It depends on how big the file is, though. If it's really huge and complex, it can be cumbersome to maintain, and difficult for the next programmer to grok. It's your call ^_^ Cordially, Kerry Thompson _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

