Hi all
I was thinking about adding another language to the site i’m working on, and i was wondering what would be the best way to create a “Language Switch” (for ex. English to French and vice-versa)?
I tought that create two XML file (one english, one french), with the same node’s structure would be a good idea, and the make a side menu with something like that:
on (release) {
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“english.xml”);
}
and in the 1st movie frame there would be the link to textfields and respective nodes.
would that work (it seems too simple to be true…)? what else should I think of? what would you do if you would have to create one such thing?
- zod