Jagan Langa created FLEX-33632:
----------------------------------

             Summary: Getting Run Time Error when loading resource module at 
runtime. 
                 Key: FLEX-33632
                 URL: https://issues.apache.org/jira/browse/FLEX-33632
             Project: Apache Flex
          Issue Type: Bug
    Affects Versions: Apache Flex 4.10.0
         Environment: windows 7
            Reporter: Jagan Langa


Im getting the following error. when i try to load my application. Its working 
fine in 4.9.1 but not in 4.10.0 rc3 . I load my resource module at runtime.

Error: Could not find compiled locale 'en_US'.
        at mx.resources::ResourceManagerImpl/set 
localeChain()[/Users/justinmclean/Documents/ApacheFlex4.10/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as:234]
        at 
mx.resources::ResourceManagerImpl/processInfo()[/Users/justinmclean/Documents/ApacheFlex4.10/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as:458]
        at 
mx.resources::ResourceManagerImpl()[/Users/justinmclean/Documents/ApacheFlex4.10/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as:141]
        at 
mx.resources::ResourceManager$/getInstance()[/Users/justinmclean/Documents/ApacheFlex4.10/frameworks/projects/framework/src/mx/resources/ResourceManager.as:125]
        at mx.core::ResourceModuleRSLItem/load()
        at mx.core::RSLListLoader/loadNext()
        at mx.core::RSLListLoader/load()
        at mx.preloaders::Preloader/timerHandler()
        at flash.utils::Timer/_timerDispatch()
        at flash.utils::Timer/tick()


when i compared the ResourceManagerImpl.as file of .10.4.0 rc3 with 4.9.0 there 
is only one change in the code. you have added a new for-each loop.

public function set localeChain(value:Array /* of String */):void
    {
        _localeChain = value;
                
                for each (var locale:String in value)
                {
                        if (!localeMap.hasOwnProperty(locale))
                        {
                                throw new Error(
                                        "Could not find compiled locale '" + 
locale + "'.");    
                        }
                }
        
        update();
    }


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to