I'm working on a Flash project that deals with multiple files. There is a main file that loads in individual SWF files as they click on different buttons. The course has dynamic text Fields that are populated via XML. So right now, my idea is to give each page it's own XML file? Would this be better suited to have one single XML file for all the pages, and the container file or multiple files?

Also, this is going to be a multilingual project. Any feedback on this would be great! Thanks!

EDIT: The XML files will just be storing text information to populate the text fields, and some links to load in images. Also, the loaded SWFs will never be accessed without the use of the main "container" SWF.

link|improve this question

Will the individual swfs ever be accessed without the main swf? What type of content will be in said xml files, language text or more? – ToddBFisher Jan 30 at 19:36
That's a good question. I'll edit my question. – leetou Jan 30 at 19:41
feedback

1 Answer

up vote 0 down vote accepted

Only my opinion here:

Generally the text resources are not significant in size relative to the other file that get loaded, and having all pages in a single xml seems preferable to me.

For the multilingual part, I think having each languages translations in a separate xml is probably a good idea.

Kind of the flash equivalent of a single .mui resource file for each language in a traditional winforms/wpf application.

To Clarify:

  • 1 Text Res file for all pages in a particular language
  • Total of X Text Res files for X languages

Flash Localization Advice

link|improve this answer
Thanks for you reply. This file probably has about 15-17 total pages that are loaded in, and so was just wondering if that would be too much for a single file. I definitely agree on the different XML for different languages. – leetou Jan 30 at 19:46
You would usually want to compile the resources you are loading, instead of loading an XML and then, according to it, loading images. SWF itself is a perfectly valid format to store such information. This may be especially beneficent if the number of request made to your server counts. – wvxvw Jan 30 at 20:03
@wvxvw, thanks for the reply. Well most of my images are compiled with in the SWF file. (Everything is build in Flash Pro CS5). The reason that I have the XML loading images it that the clients it so that they can just swap out certain images easily by changing only the XML. – leetou Jan 30 at 20:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.