ok I have sorted it, at least for the moment, until the author is back from wherever he is, what you can do is
1) if you have the source code and can publish an .swf file: in Element.as, around line 200 comment out the line after if(!exists)............. (I copied bits around it below). Don't know what effect it has, if you use the localizer.
var defLang:String = loc.defaultLanguage;
for each (var attrib:XML in _xml.attributes()) {
// Data on default attribute.
var defName:String = Helper.validateString(attrib.name(), "");
var defValue:String = Helper.validateString(attrib, "");
// Test if an entry for the default value exists, if not append.
var exists:Boolean = false;
for each (var locAttrib:XML in _xml.elements(defName)) {
var locLang:String = Helper.validateString(locAttrib.@lang, "");
if (locLang == _localizer.defaultLanguage) {
exists = true;
break;
}
}
if (!exists) {
//_xml.appendChild("<" + defName + " lang=\"" + defLang + "\">" + defValue + "</" + defName + ">");
}
}
setAttributesToLanguage(_localizer.language);
_localizer.addEventListener(LocalizerEvent.LANGUAGE_CHANGED, onLanguageChange);
}
2) for those who do not have the possibility to publish, I have a "new" megazine.swf available. can one upload things anywhere around here?
daniela
