It does look like bundles are being loaded as modules, in which case the swf url will be replaced with the js url that needs to be loaded in runtime.
I recall there being a recent thread on how to build modules which may be helpful. There are problems with modules in release builds. I’m not sure if they apply here. Hope this helps… From: Yishay Weiss<mailto:yishayj...@hotmail.com> Sent: Sunday, November 29, 2020 2:07 PM To: dev@royale.apache.org<mailto:dev@royale.apache.org> Subject: RE: RE: RE: Resource bundles and locales If you look in ResourceManagerImpl.as under MXRoyale you’ll see that loadResourceManager() exists but I’ve never personally tested it. Others might know more. > resourceManager.loadResourceModule( "myapp_en_US.swf", true ).addEventListener( mx.events.ResourceEvent.COMPLETE, function completeHandler( event : mx.events.ResourceEvent ) : void { resourceManager.localeChain = ["en_US"]; } ); In Royale, mxmlc won't allow that command-line (it insists on a source filename). And I know a .swf isn't used in JS. And I don't know if a default locale is integrated on the JS side. So I have no idea where to start. On 11/29/2020 1:35 AM, Yishay Weiss wrote: > I haven’t tried dynamically loading locales. We are using the compiler > option, which is the same as in Flex. > > > > From: Edward Stangler > Sent: Friday, November 27, 2020 4:15 AM > Subject: Re: RE: Resource bundles and locales > > Right, but how do you create the resource bundles and dynamically load > the locales? > > It seems like it's very different in Royale. > > > > On 11/26/2020 1:58 AM, Yishay Weiss wrote: >> In emulation components it’s similar to the Flex syntax. We have seen bugs >> however with the @ annotator syntax in mxml and are using instead things like >> >> <s:Label text=”{ResourceManager.getInstance().getString(‘bundle’, ‘key’)}”/> >> >> >> >> From: Edward Stangler >> Sent: Thursday, November 26, 2020 12:31 AM >> Subject: Resource bundles and locales >> >> What is the current way to do resource bundles and locales? >>