Flex : Unable to open 'locale/en_US' - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:00:29Z http://stackoverflow.com/feeds/question/1028644 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus 1 Flex : Unable to open 'locale/en_US' dta 2009-06-22T18:06:44Z 2009-07-28T06:06:11Z <p>Using Flex Builder :<br/> I have created a new Actionscript Project. I want to use mx.controls.Button class in it, so I did the following : </p> <ol> <li>Added '-locale=en_US -source-path=locale/{locale}' to the Actionscript compiler arguments</li> <li>Added 'framework.swc' to the library path</li> </ol> <p>But now I get this error: <strong>unable to open 'locale/en_US'</strong> I looked up and I do have the following directory inside my Flex Builder 3 installation: <br/> ./sdks/3.0.0/frameworks/locale/en_US</p> <p>How to fix it?</p> http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus/1029120#1029120 1 Answer by Christian Nunciato for Flex : Unable to open 'locale/en_US' Christian Nunciato 2009-06-22T19:59:24Z 2009-06-22T19:59:24Z <p>Have you added a "locale" directory containing an "en_US" directory at the root of your Flex project, to be used for storing your locale-specific properties? For example, in a project supporting English- and French-localized strings, your Flex project structure might look something like this:</p> <pre><code>-- YourProject |-- libs |-- locale |-- en_US |-- resources.properties |-- en_FR |-- resources.properties |-- src |-- [Your source files...] </code></pre> <p>Sounds like that might be what's happening. Give it a try and post back if it doesn't work for ya.</p> http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus/1191743#1191743 0 Answer by Jackey for Flex : Unable to open 'locale/en_US' Jackey 2009-07-28T03:05:30Z 2009-07-28T03:05:30Z <p>good, it was solved!</p> http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus/1192160#1192160 0 Answer by Jackey for Flex : Unable to open 'locale/en_US' Jackey 2009-07-28T06:06:11Z 2009-07-28T06:06:11Z <p>Put locales to sdks\3.2.0\frameworks\locale\en_US it works well also.</p>