Flex : Unable to open 'locale/en_US' - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:00:29Zhttp://stackoverflow.com/feeds/question/1028644http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus1Flex : Unable to open 'locale/en_US'dta2009-06-22T18:06:44Z2009-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#10291201Answer by Christian Nunciato for Flex : Unable to open 'locale/en_US'Christian Nunciato2009-06-22T19:59:24Z2009-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#11917430Answer by Jackey for Flex : Unable to open 'locale/en_US'Jackey2009-07-28T03:05:30Z2009-07-28T03:05:30Z<p>good, it was solved!</p>
http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus/1192160#11921600Answer by Jackey for Flex : Unable to open 'locale/en_US'Jackey2009-07-28T06:06:11Z2009-07-28T06:06:11Z<p>Put locales to sdks\3.2.0\frameworks\locale\en_US
it works well also.</p>