Hi there,
In order to be Flex-independent, we had to build a Localization Framework
that didn't depend on resource bundles. That said, you should be able to
plug resource bundles in pretty easily.
Localization.impl = new MyLocalizationManager();
Then, make a MyLocalizationManager class which implements
ILocalizationManager - the method you specifically need to implement is
getString(). You can pull the string from your resource bundles in that
method.
nigel