Error resolving resource bundle "strings"

Hi
I'm trying to use Flex 3 to compile the Flex 2 PhotoViewer
sample project, and encountered this error: 'Unable to resolve
resource bundle "strings" for locale "en_US".'
I found the Flex 2 TechNote which suggested to add
"-use-network=false -library-path+=locale/{locale}
-source-path+=locale/{locale} -locale=en_US" as compiler options.
So I tried adding the above options into the build.bat files
I can find at:
a) C:\Program Files\Adobe\Flex Builder
3\sdks\3.1.0\samples\explorer
b) C:\Program Files\Adobe\Flex Builder
3\sdks\3.1.0\templates\automation-runtimeloading-files
but still the error persists.
Can anyone please advise where I should change the compiler
options? Thanks!
Regards
freshflex

<< Do not post the same question across a number of forums >>

Similar Messages

  • Pure AS3 Project unable to resolve resource bundle

    I've been working on a pure AS3 project in Flash Builder and all has been going just fine. All of a sudden, I started getting errors such as:
    Unable to resolve resource bundle "core" for locale "en_US". Player Unknown Flex Problem
    What in the heck did I likely do?  Any hints welcome.

    I jut saw the posting today.
    Place your local folder in application root
    In project properties : Flex Compiler Argument : additional compiler argument : -source-path ../locale/{locale}
    add this.

  • Proj cannot run on LCDS 2.6 ES due to "Unable to resolve resource bundle "datamanagement" for locale "en_US"

    hi, all,
    We have developped an application on Flex Build 3 (run
    successfully), but failed when we try to deploy it on Tomcat with
    LCDS 2.5 ES because some components cannot be resolved correctly on
    LCDS 2.5. We then downloaded a 2.6 ES Beta 2, but still cannot run
    the application, the error msg is "Unable to resolve resource
    bundle "datamanagement" for locale "en_US".
    anyone knows how to deploy the application on LCDS 2.6 ES?
    Many thanks.

    In your WEB-INF/flex/locale/en_US dir there should be a file
    called fds_rd.swc. Is that there?

  • Unable to resolve resource bundle "fiber"

    Hi all!
    I'm trying to use AMF with PHP in Flash Builder 4 (plug-in version) and I'm having the following error:
    Unable to resolve resource bundle "fiber" for locale "pt_PT". dss Unknown Flex Problem
    I've found a workaround here in which they recommend to add these lines too the beginning of the eclipse.ini file:
    -nl
    en_US
    Nonetheless, even adding those lines to the file, I keep having the same error.
    Anyone knows what might be going wrong?
    Best regards,
    Jorge

    If you're trying to...
    use Adobe's lifecycle/fiber/generated classes/RemoteObjectServiceWrapper
    import com.adobe.fiber.valueobjects.AvailablePropertyIterator
    import com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper;
    etc. etc., here's what I did:
    Don't add those two lines to your ini file. (At least, I'm using Flash Builder 4 and this wasn't necessary for me)
    import 2 swc folders (Under Properties -> Flex Build Path -> Library Path):
    /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/libs
    and
    /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/locale
    (the latter has the swc with the locale and the locations of these files will vary, esp. if you're not on a mac)
    HTH

  • Unable to resolve resource bundle "myResources" locale "en_US" ?

    Hi All,
                        I have created two locales one is en_US and Second one is fr_FR. I placed these two files in locale file. These files directory structure is
                    ......\src\locale\en_US and .....\src\locale\fr_FR . After  placing these two files in the project i was compile my application and it is showing just like unable to resolve resource bundle "myResources" locale "en_US"...  can any one help me how to configure the resource bundle in my flex application... i dont have exposure to resource bundle earlier. So plese tell me the configurations step by step.. how to configure...
                           My resource property name is myResource.properties .
    Thanks
    Ram

    If you have already followed the correct directory structure. Then please check the following,
    1. change the compiler arguments, to "-locale=en_US,fr_FR -source-path=locale/{locale}"
    you can find the compiler arguments, by right-clicking over the project name on the flex builder, properties-> flex compiler->compiler options.
    2. please check whether both the locale properties files uses the correct encoding. If not change them to "UTF-8"
    you can find this, by right-clicking over the properties file on the flex builder, properties->resources->text file encoding

  • Error: Unable to resolve resource bundle "fiber" for locale "en_US".

    Hi all,
    Im trying to create a resources.swf file for the purpose of dynamic localization of our application. However, I keep getting this error thrown when I try to run the ant script.
    Im running Flash Builder 4, the sdk is Flex 4.5.1 with AIR 3.0 and a Windows 7-64 bit machine (just mentioning as a few posts associated it with the OS).
    After searching some of the forum posts, ( http://forums.adobe.com/thread/606383)
    1> I checked the eclipse.ini file and found the following lines already in there.
         -nl
         en_US
    2> My compiler options already has -locale en_US specified.
    3> I tried including the swc files as suggested in the referenced thread, both as a referenced library and by manually copying the swcs to the project, but neither of them helped.
         "import 2 swc folders (Under Properties -> Flex Build Path -> Library Path):
         /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/libs
         and
         /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/loca le"
    Thanks in advance for your help.
    My build.xml file looks as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <project name="appName" basedir="." default="main">
              <taskdef resource="flexTasks.tasks" classpath="${basedir}/lib/flexTasks.jar"/>
              <!-- CHANGE TO YOUR FLEX DIRECTORY //-->
              <property name="FLEX_HOME" value="C:/Users/abc/Documents/flex_sdk_4.5.1.21328_AIR3.0"/>
              <property name="APP_ROOT" value="appName"/>
              <target name="main">
                        <antcall target="en_US"></antcall>
    <!--                    <antcall target="de_DE"></antcall>-->
              </target>
              <target name="en_US">
                        <mxmlc>
                                  <locale>en_US</locale>
                                  <source-path>locale/{locale}</source-path>
                                  <include-resource-bundles>appResource</include-resource-bundles>
                                  <include-resource-bundles>SharedResources</include-resource-bundles>
                                  <include-resource-bundles>collections</include-resource-bundles>
                                  <include-resource-bundles>components</include-resource-bundles>
                                  <include-resource-bundles>containers</include-resource-bundles>
                                  <include-resource-bundles>controls</include-resource-bundles>
                                  <include-resource-bundles>core</include-resource-bundles>
                                  <include-resource-bundles>effects</include-resource-bundles>
                                  <include-resource-bundles>formatters</include-resource-bundles>
                                  <include-resource-bundles>layout</include-resource-bundles>
                                  <include-resource-bundles>logging</include-resource-bundles>
                                  <include-resource-bundles>messaging</include-resource-bundles>
                                  <include-resource-bundles>rpc</include-resource-bundles>
                                  <include-resource-bundles>skins</include-resource-bundles>
                                  <include-resource-bundles>sparkEffects</include-resource-bundles>
                                  <include-resource-bundles>styles</include-resource-bundles>
                                  <include-resource-bundles>textLayout</include-resource-bundles>
                                  <include-resource-bundles>utils</include-resource-bundles>
                                  <include-resource-bundles>validators</include-resource-bundles>
                                  <include-resource-bundles>fiber</include-resource-bundles>
                                  <output>locale/en_US/appName.swf</output>
                        </mxmlc>
              </target>
    </project>
    Thanks & Regards,
    AJ

    I did import the swcs first as a referenced library, by
    Project-> Properties -> Flex Build Path -> Library Path -> add swc folder.
    Secondly, I manually copied the swcs from the folders at
    1>
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexbuilder.dcrad_4.0.0.272416\dcradSwcs\4.0\libs
    files present: fds.swc, fiber.swc and serializers.swc
    2>
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexbuilder.dcrad_4.0.0.272416\dcradSwcs\4.0\locale
    files present: fds_rb.swc, fiber_rb.swc and serializers_rb.swc
    into the libs folder of my project .

  • Custom error messages - resource bundle

    Greetings everyone!
    My JDev version is:  11.1.2.3.0
    I've seen several threads in OTN and outside about this topic, but they seem confused (or may be it's me that is missing something).
    I have this current situation, when because of the presence of a FK in the database, when a try to delete a certain record, a popUp shows up ORA-02292 error code. I don't want to enable cascade deletion (i don't want anything to be deleted in that case at all), so i was trying to customize the error message. I've created a java class and declared it as a resource bundle in the Model project. The content is this:
    public class CustomErrorMessages extends ListResourceBundle {
        private static final Object[][] sMessageStrings = new String[][] {
    {"25014", "Another user has made a modification to this record meanwhile. Please cancel your changes!"},
        {"CREDITOR", "This party is assigned as a creditor/debtor in this contract. It cannot be deleted!"},
        {"DEBTOR", "This party is assigned as a creditor/debtor in this contract. It cannot be deleted!"}
        /**Return String Identifiers and corresponding Messages in a two-dimensional array.
        protected Object[][] getContents() {
            return sMessageStrings;
    25014 - refers to JBO-25014 and it works fine. Now CREDITOR/DEBTOR are the FK mentioned above. If i put 02292  or ORA-02292  instead of them it doesn't work at all. If i let them just like this, it works if i run the Application Module only, but not when i run the application. What does it mean?
    Also, i've noticed that the ViewController project has also a "Resource Bundle" section in the properties, but the content is disabled. Should i do any kind of configuration to make it work?
    Thank you in advance.

    Hi,
    this blog is as close as it gets to your requirement
    http://www.jobinesh.com/2011/03/customizing-business-components-error.html
    Frank

  • Trouble resolving resource bundle message with validator.

    Hi,
    I'm using an af:validateDateTimeRange component (with only a minimum date), and want to change the validation message that is displayed to a custom message.
    I have this message in the resource bundle, but the component does not seems to pick it up, and just uses the default message instead. The only ways I've got it to display the correct message are :
    - Hardcoding the message into the minimumMessageDetail attribute (currently done this way).
    - binding the minimumMessageDetail attribute to a managed bean's property.
    Is there any reason why it's not picking up the message from the resource bundle? (Yes, the resource bundle is set up correctly - it's used everywhere throughout the application.)

    Ok my diagnosis of this is that references to keys in a property bundles from the attributes
    maximumMessageDetail
    minimumMessageDetail
    notInRangeMessageDetail
    Do not work. Hardcoded values work in notInRangeMessageDetail, but not the other two - does that agree with what you see?

  • Sample Quiz Application error in resource Bundle

    hi sdns ,
    i am stuck with an error.
    please help me how to rectify this problem.
    500   Internal Server Error
      Web Dynpro Container/SAP J2EE Engine/6.40 
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.util.MissingResourceException: Can't find bundle for base name com.sap.tc.webdynpro.tutorials.quiz.resources.Answers, locale en_US
        at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:838)
        at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:728)
        at java.util.ResourceBundle.getBundle(ResourceBundle.java:701)
        at com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.initResourceBundle(AbstractResourceHandler.java:485)
        at com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.loadResourceBundle(AbstractResourceHandler.java:162)
        ... 31 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Version null
    DOM version null
    Client Type msie6
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0009.20060804145649.0000 (release=645_VAL_REL, buildtime=2006-08-26:14:41:58[UTC], changelist=413534, host=pwdfm101), build date: Sun Aug 12 13:03:31 IST 2007
    J2EE Engine No information available
    Java VM Java HotSpot(TM) Server VM, version:1.4.2_14-b05, vendor: Sun Microsystems Inc.
    Operating system Windows 2003, version: 5.2, architecture: x86
    Session & Other
    Session Locale en_US
    Time of Failure Wed Oct 17 14:18:14 IST 2007 (Java Time: 1192610894734)
    Web Dynpro Code Generation Infos
    local/WebDynpro_Quiz
    SapDictionaryGenerationCore 7.0004.20050713144105.0000 (release=645_VAL_REL, buildtime=2005-09-19:09:56:45[UTC], changelist=357691, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates (unknown)
    SapGenerationFrameworkCore 7.0004.20050713144242.0000 (release=645_VAL_REL, buildtime=2005-09-19:09:50:22[UTC], changelist=357697, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0004.20050713144412.0000 (release=645_VAL_REL, buildtime=2005-09-19:10:01:14[UTC], changelist=357705, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0004.20050713144259.0000 (release=645_VAL_REL, buildtime=2005-09-19:09:50:57[UTC], changelist=357699, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0004.20050713144259.0000 (release=645_VAL_REL, buildtime=2005-09-19:09:50:51[UTC], changelist=357699, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0004.20050509170017.0000 (release=645_VAL_REL, buildtime=2005-09-19:09:54:51[UTC], changelist=346508, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0004.20050713144450.0000 (release=645_VAL_REL, buildtime=2005-09-19:09:58:47[UTC], changelist=357707, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0004.20050812153807.0000 (release=645_VAL_REL, buildtime=2005-09-19:10:17:37[UTC], changelist=362988, host=pwdfm101)
    SapWebDynproGenerationCore 7.0004.20050713144412.0000 (release=645_VAL_REL, buildtime=2005-09-19:10:01:24[UTC], changelist=357705, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0004.20050812153807.0000 (release=645_VAL_REL, buildtime=2005-09-19:10:17:37[UTC], changelist=362988, host=pwdfm101)
    sap.com/tcwddispwda
    No information available null
    sap.com/tcwdcorecomp
    No information available null
    Detailed Error Information
    Detailed Exception Chain
    java.util.MissingResourceException: Can't find bundle for base name com.sap.tc.webdynpro.tutorials.quiz.resources.Answers, locale en_US
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:838)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:728)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:701)
         at com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.initResourceBundle(AbstractResourceHandler.java:485)
         at com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.loadResourceBundle(AbstractResourceHandler.java:162)
         at com.sap.tc.webdynpro.tutorials.quiz.Quiz.wdDoInit(Quiz.java:105)
         at com.sap.tc.webdynpro.tutorials.quiz.wdp.InternalQuiz.wdDoInit(InternalQuiz.java:122)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:429)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:700)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:269)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)

    public void wdDoInit()
        //@@begin wdDoInit()
        IWDResourceHandler resourceHandlerForQuestions=WDResourceHandler.createResourceHandlerForCurrentSession();
        IWDResourceHandler resourceHandlerForAnswers=WDResourceHandler.createResourceHandlerForCurrentSession();
        resourceHandlerForQuestions.loadResourceBundle("com.sap.tc.webdynpro.tutorials.quiz.resources.Questions.properties",this.getClass().getClassLoader());
        resourceHandlerForAnswers.loadResourceBundle("com.sap.tc.webdynpro.tutorials.quiz.resources.Answers.properties",this.getClass().getClassLoader());
        int size=Integer.valueOf(resourceHandlerForQuestions.getString("SIZE")).intValue();
        Collection questions=new ArrayList();
        for(int i=0;i<size;i++)
             IPublicQuiz.IQuizDataElement quizDataElement=wdContext.createQuizDataElement();
             quizDataElement.setQuestion(resourceHandlerForQuestions.getString("Q"+i));
             quizDataElement.setAnswer(resourceHandlerForAnswers.getString("A"+i));
        //@@end

  • How can I specify a parameter in a Resource Bundle string via EL?

    In Jdeveloper I use to specify labels or other text properties via ResourceBundle.properties:
    msgid1 = I love cats.
    which means #{res['msgid1']} as component property.
    Now suppose
    msgid1= I love my {0} cats
    What is the the EL string now?

    check below thread
    How to use parameter in resource bundle

  • GTC Page Not loading - Error with Resource Bundles

    I am using following OIM Software:
    OIM 9.1.0.2
    Linux x86
    While accessing the GTC Manage Page, I am getting the Search button, Once I click the Search for all GTCs, It is throwing me error with "Contact Sysstem Administrator"
    During the investigation, I found that I am getting the following error when I access the xlWebApp through Web:
    ===============
    INFO,16 Aug 2010 11:58:35,171,[XELLERATE.WEBAPP],Property global.resultSet.Form~Information.Description.create~generic~connector not found in en locale bundle.
    INFO,16 Aug 2010 11:58:35,171,[XELLERATE.WEBAPP],Property global.resultSet.Form~Information.Description.manage~generic~connector not found in en locale bundle.
    INFO,16 Aug 2010 11:58:35,172,[XELLERATE.WEBAPP],Property global.resultSet.Form~Information.Description.Reset~self~password~menu~item not found in en locale bundle.
    INFO,16 Aug 2010 11:58:35,172,[XELLERATE.WEBAPP],retrieving object from cache key = xlCustomClienten
    INFO,16 Aug 2010 11:58:35,172,[XELLERATE.WEBAPP],Property global.resultSet.Form~Information.Description.Change~self~password~menu~item.Change~Self~Password~menu~item not found in en locale bundle.
    INFO,16 Aug 2010 11:58:35,172,[XELLERATE.WEBAPP],Property global.resultSet.Form~Information.Description.Create~generic~connector.Create~Generic~Technology~Connector~menu~item not found in en locale bundle.
    INFO,16 Aug 2010 11:58:35,172,[XELLERATE.WEBAPP],Property global.resultSet.Form~Information.Description.Manage~generic~connector.Manage~Generic~Technology~Connector~menu~item not found in en locale bundle.
    ===============
    I added the following in customResources_en.properties
    global.resultSet.Form~Information.Description.create~generic~connector=create generic connector
    global.resultSet.Form~Information.Description.manage~generic~connector=manage generic connector
    global.resultSet.Form~Information.Description.Reset~self~password~menu~item=Reset self password menu item
    global.resultSet.Form~Information.Description.Change~self~password~menu~item.Change~Self~Password~menu~item=Change Self Password menu item
    global.resultSet.Form~Information.Description.Create~generic~connector.Create~Generic~Technology~Connector~menu~item=Create Generic Technology Connector menu item
    global.resultSet.Form~Information.Description.Manage~generic~connector.Manage~Generic~Technology~Connector~menu~item=Manage Generic Technology Connector menu item
    I am trying so many options with these two files, however the error is not changing at all. Also, do I need to add this to customDefaultResources.properties?
    Any suggestions?
    Thanks in advance. I will assign Points.
    Regards
    Vijay Chinnasamy

    LCMan wrote:
    Carolyn Samit wrote:
    Did you read my response to you??
    Yes. However, I don't believe it's an enycryption issue. It's something to do with javascript.
    Regardless of what the issue is, the only (temporary) fix seems to be to use Firefox. However, I would have to agree with what Carolyn Samit said. Carolyn is a very active member here and knows a lot of things.

  • Resource bundle "rft_flexautomation" for locale "en_US

    Hi,
    I have installed Flex Builder 3 and Rational Functional
    Tester 8.0.0 for automation of flex application.
    So i have executed following steps:-
    1. Start Flex Builder.
    2. Create a new Flex project.
    3. Select the Flex project in the navigator.
    4. Click Select Project > Properties > Flex Compiler.
    5. Enter the code shown in Listing 1 in the "Additional
    compiler arguments" field.
    Listing 1. Code for additional compiler arguments
    -Include-libraries "<flex builder install dir>\Flex SDK
    2
    \frameworks\libs\automation.swc" "<flex builder install
    dir\Flex SDK 2
    \frameworks\libs\automation_agent.swc" "<flex builder
    install dir>\Flex SDK 2
    \frameworks\libs\automation_charts.swc" "<functional
    tester dir>
    \Functional Tester\bin\rft.swc"
    6. Click OK to save your changes.
    7. Click OK to close the Properties dialog box.
    8. Compile your Flex sample application.
    I am getting following error :-
    Unable to resolve resource bundle "rft_flexautomation" for
    locale "en_US"
    Please help me out to resolve this error
    Thanks,
    Samidha

    I jut saw the posting today.
    Place your local folder in application root
    In project properties : Flex Compiler Argument : additional compiler argument : -source-path ../locale/{locale}
    add this.

  • How to link the resource bundle in JSF implemented in  eclipse?

    Kindly help me out

    This is how I called the resource bundle in JSF
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <f:view>
    <f:loadBundle basename="constantsUIProp" var="prop"/>
    <h:form>
    <h:inputText maxlength="#{prop.AREA_CODE_MAX}"></h:inputText>
    </h:form>
    </f:view>
    </body>
    </html>
    when i tend to build, it shows an error like+ Resource bundle cannot be found on the classpath+
    I have saved the resource bundle in WebContent/Web-Inf/classes/constantsUIProp

  • [ERROR] could not find source for resource bundle modules.

    We are in the process of upgrading our flex application from SDK3.6 to SDK4.5.0.17899.
    Flexmojos version used for compilation is 3.9.
    The flex library project is complied with SDK4.5.0 version but BUILD is not getting SUCESS from maven.
    The following is the reason is showing and unable to find out the root cause.
    [ERROR] could not find source for resource bundle modules.
    Can you please help me out.
    Thanks,

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Error: could not find source for resource bundle charts

    I am trying to upgrade from Flex SDk 3.4 to 3.5.
    I have copied the Data Visualisation SWCs under libs, locale and rlsls folders as suggested by adobe.
    I get the following error when building the application
    flex-library:
         [java] Loading configuration file /usr/local/lib/flex_sdk/3.5.0/frameworks/flex-config.xml
         [java] Error: could not find source for resource bundle charts.
         [java]
    What am I missing? Any help is highly appreciated.
    Thanks

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

Maybe you are looking for

  • Static Interface Pattern

    Summary ======= Define an interface which declares static methods. The essence of what I mean by this is: define a number of classes which contain/provide access to common methods to which we can make static calls. Details ======= What we are trying

  • Enterprise Services and PI

    I am looking for some white papers / blogs on calling SAP Enterprise Services via PI. I would also like to get sdome idea of the following points: 1) A typical scenario using Enterprise Services 2) Is it possible to extend Enterprise Services as one

  • Deadline 4.0 -- AE renders on Linux??

    Deadline 4.0 for C4D -- linux  rendering?? Prime Focus just released Deadline 4.0, a cross-platform  render farm toolkit. http://software.primefocusworld.com...dline/overview/ It supports Windows, Mac and Linux... with for just about every major  sof

  • How to store molecular formula in MM (eg:H2O)

    How to store/tie molecular formula in MM (eg:H2O)

  • HT5622 How change creditcards setting in Apple id

    In Apple id account heads ago i set creditcards information . I want to change but howto?