I am getting a similar error. However, I am building through nant and calling mxmlc.exe using Hudson. Here is my current blocking error:hudson-build:
[echo]
[exec] Loading configuration file C:\Program Files (x86)\flex_sdk_4\frameworks\flex-config.xml
[exec] Error: Unable to resolve resource bundle "ViewerStrings" for locale "en_US".
[exec]
These are the errors I plowed through, in order to get to the error above, by simply adding a '/' to the beginning of the reference path... I thought the pathing was messed up for some reason so I just told it to start at the root of the src dir. I have had similar issues with building from nant/ant... assuming this is one of "those":[exec]
[exec] C:\Users\Administrator\.hudson\jobs\fv2\workspace\src\com\esri\viewer\skins\ScrollBarLeftButtonSkin.mxml: Error: unable to resolve 'assets/images/arrow_up.png' for transcoding
[exec]
[exec] C:\Users\Administrator\.hudson\jobs\fv2\workspace\src\com\esri\viewer\skins\ScrollBarLeftButtonSkin.mxml: Error: Unable to transcode assets/images/arrow_up.png.
I think my fix worked for this issue...? Considering I am blocked at the error shown at the top of this post, which does not allow me to test the application, I am not 100% sure. I do know that it changed said blocking error which I assume means I am moving forward rather than breaking things further..... 😄Anywho... My additional compiler arguments are correct. (Disclaimer: correct is defined by posts on this forum)Did you use Flash Builder to import the source zip into a new project?
Your additional compiler args should be:
-locale=en_US -source-path=locale/{locale} -keep-all-type-selectors=true
Here are the arguments defined in .actionScriptProperties:<compiler additionalCompilerArguments="-locale=en_US -source-path=locale/{locale} -keep-all-type-selectors=true" .....
So.... any ideas or updates?