Locale swc packages other than provided in Fb4.6

Hi all,
Since this is our first contribution to the forum, I'll introduce me: my name is Nacho and I work for LiteSolutions (which is the owner of the account). We use Fb4.6 to develop mobile apps.
Since we have to develop this apps focusing in the internationalization, we have added to the flex project build path some of the provided locale frameworks like, for example, en_US, fr_FR, es_ES or zh_CN. Unfortunately, for the app we are developing right now, we need some extra locales that are not provided in the Fb4.6 product such as arabic, indonesiand, vienamese or en_UK.
Is it planned to release some of these locale plugins? After a quick search in the forum (http://forums.adobe.com/message/2315815#2315815) I understand that it's possible to build them by our own. Is it really necessary? In this case, is there a tutorial other than the mentioned thread?
Kind regards,
Nacho

Hi, Nacho -
I'm not sure if I know all the answers to your questions, but here are a few resources that I'm hoping could help you:
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7f2d.html#WS2d b454920e96a9e51e63e3d11c0bf69084-7f34
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7f2d.html#WS2d b454920e96a9e51e63e3d11c0bf69084-7f34
http://sujitreddyg.wordpress.com/2008/01/22/localizing-flex-applications/
Hope this helps,
Mallika Yelandur
Adobe Community Help & Learning

Similar Messages

  • [svn:fx-trunk] 10143: Library definitions weren' t resolveable if the owning document lived in package other than the root.

    Revision: 10143
    Author:   [email protected]
    Date:     2009-09-10 18:32:54 -0700 (Thu, 10 Sep 2009)
    Log Message:
    Library definitions weren't resolveable if the owning document lived in package other than the root.
    QE notes: None
    Doc notes: None
    Bugs: SDK-22082
    Reviewer: Paul
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22082
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • What is the main use of domain other than providing technical attributes

    frends let me know what is the main use of domain other than providing technical attributes

    hi RajaReddy,
    Domains are used to
    <b><u>1. specify fixed value ranges.</u></b>
    For eg: <b>status type Char 1</b>, can have fixed values stored in the domain level
    as '1' - Active '2' - retired '3' - terminated '4'- temporary..etc
    <u><b>
    2. Conversion routines are attached at domain level</b></u>
    <u>
    Conversion routine <b>MATN1</b> (connected function modules are CONVERSION_EXIT_MATN1_INPUT
    CONVERSION_EXIT_MATN1_OUTPUT),  is attached for domain MATNR
    <b>3. Value table are atttached at domain level (if fixed value ranges are not mentioned)</b></u>
    for eg: value table mara is attached for Domain MATNR.
    <u><b>
    4. And most importantly, domains can be re-used for multiple data elements, in the same table.</b></u>
    Hope this helps,
    Sajan Joseph.

  • (266436851) Q: WWSD-7 Can web service be in packages other than .ear files?

    Q:<WWSD-7> Could we deploy the SOAP package not using the ear, instead could we
    put all the related Java code to jar file and the rest of the code to the war
    files? The reason I asked is because we do not deploy our applciation in ear format.
    A:<WWSD-7> EAR files are general packaging structures that can contain war, EJB
    jar, rar and regular jar files. The wsgen task provided expects an output file
    to be an ear file. If you are going to utilize another format you will be resonpsible
    for building the appropriate web application components. It can be done but you
    will have to do more work and not use the provided wsgen task. As far as web services
    in general are concerned, the actual business processing can be done by any component
    just as long as there is a servlet that understands the SOAP requests and responses.
    It is BEA expectation that EJBs are supposed to be you core business components
    so these will be the operations most likely to be exposed as web srevices.

    Hello Erik,
    I was looking into the thread , it seems you have found out the solution .
    Could you look into this thread and provide some insight for the same ? I am currently facing the problem as mentioned in the link below.
    CAF-EJB
    Regards,
    Ronniee

  • How to invoke a service on a server other than local bpel server?

    Hi,
    Im trying to invoke a service on a server other than the local bpel server thats installed by default. Any pointers to how this can be achieved? My jedevelper does not show "Bpel process Manager server" under the connections navigator and hence I cannot create a new connection to a different server(other than the default one). Appreciate yr help.
    Thanks,
    -L

    If you only want to just invoke the service, you dont need a new connection.
    Cant you just point to the wsdl of the service in the partnerlink ?
    If you need a new connection in jdeveloper to the other server, you first need to make the new applicationserver connection and after that the integrationserver connection.
    After this you can connect to an other bpelserver, besides the default.

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • Report showing GL Accounts with  document posted in currency other than local currency

    We need a report that shows all the GL Accounts that had a document posted in currency other than local currency during the month. The purpose of such a report is that we should not miss any Foreign Currency Gain or Loss at the end of the month.
    Is there such a report already in Standard SAP ? Please let me know. Points guaranteed.

    Hi Ajay sir,
    It's never be a bad idea. But I think Rajeev might be looking for a stright report than work around, which is not available.
    Regards...
    Jose

  • FM for convert to local currency other than CONVERT_TO_LOCAL_CURRENCY

    Does anyone know any other FM which converts into local currency???
    But it should be other than CONVERT_TO_LOCAL_CURRENCY..

    Hi Ajay,
    Just you can check it out in SE37.
    CONVERT_TO_LOCAL_CURRENCY_N
    CONVERT_TO_LOCAL_CURRENCY_O.
    CONVERT_TO_FOREIGN_CURRENCY
    Chk this Link
    convert to local  currency
    Reward Points if Useful
    Regards
    Gokul

  • SQL server 2012 does not see local disks other than C being started under domain account (which is local admin on the server)

    Hi all. We have a SQL Server 2012 installed to a fresh Windows Server 2012 Server. There is a service account domain\rusystem01 created to run SQL services. It is added as a Local administrator on this server.
    The issue is that SQL Server does not see any local drives (other than C drive) on the server if we run it from this domain service account (for example, we cannot move any databases to any other drives or setup backup).
    It works fine (and other drives ARE available) if SQL Services are started from Network service account or Local service account (which is not recommended by Microsoft). But does not work from domain account.
    Any ideas how to fix this?
    MCP

    >Any ideas how to fix this?
    Apply NTFS ACLs for the folders (and perhaps volumes*) for SQL Server.  Use the Per-Service SID, rather than the Service Account for the ACLs so they survive changing the service account. 
    The per-service SID is "NT Service\MSSQLSERVER" for a default instance and "NT Service\MSSQL$InstanceName" for a named instance.
    *Volume ACLs are set in Disk Management.
    David
    David http://blogs.msdn.com/b/dbrowne/
    David, would you please clarify what do you propose? I open D: volume on the Disk management and grant NT Service\MSSQL$DEV account with Full control permissions. Restarted SQL - no effect. Still only C: is visible for SQL.
    MCP

  • Is there a way to buy something from an iTunes store other than my own local one?

    Is there a way to buy something from an iTunes store other than my own local one?

    No, unless you have a valid billing address in that country and you are in that country when purchasing from it - otherwise you can only purchase from the store that is based in the country where you are.

  • [svn:fx-4.0.0] 13951: Added qtp_air_rb.swc for other locales in 4.0. 0 branch

    Revision: 13951
    Revision: 13951
    Author:   [email protected]
    Date:     2010-02-02 19:17:30 -0800 (Tue, 02 Feb 2010)
    Log Message:
    Added qtp_air_rb.swc for other locales in 4.0.0 branch
    Modified Paths:
        flex/sdk/branches/4.0.0/frameworks/libs/automation_agent.swc
        flex/sdk/branches/4.0.0/frameworks/libs/qtp.swc
        flex/sdk/branches/4.0.0/frameworks/libs/qtp_air.swc
        flex/sdk/branches/4.0.0/frameworks/locale/da_DK/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/da_DK/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/de_DE/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/de_DE/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/en_US/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/en_US/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/es_ES/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/es_ES/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/fi_FI/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/fi_FI/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/fr_FR/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/fr_FR/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/it_IT/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/it_IT/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ja_JP/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ja_JP/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ko_KR/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ko_KR/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/nb_NO/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/nb_NO/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/nl_NL/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/nl_NL/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/pt_BR/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/pt_BR/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ru_RU/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ru_RU/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/sv_SE/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/sv_SE/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/zh_CN/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/zh_CN/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/zh_tw/automation_agent_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/zh_tw/qtp_air_rb.swc

  • [svn:fx-4.0.0] 13569: Added qtp_air_rb.swc for other locales in 4.0. 0 branch

    Revision: 13569
    Revision: 13569
    Author:   [email protected]
    Date:     2010-01-18 03:46:25 -0800 (Mon, 18 Jan 2010)
    Log Message:
    Added qtp_air_rb.swc for other locales in 4.0.0 branch
    Modified Paths:
        flex/sdk/branches/4.0.0/frameworks/locale/en_US/qtp_air_rb.swc
    Added Paths:
        flex/sdk/branches/4.0.0/frameworks/locale/da_DK/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/de_DE/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/es_ES/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/fi_FI/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/fr_FR/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/it_IT/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ja_JP/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ko_KR/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/nb_NO/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/nl_NL/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/pt_BR/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/ru_RU/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/sv_SE/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/zh_CN/qtp_air_rb.swc
        flex/sdk/branches/4.0.0/frameworks/locale/zh_tw/qtp_air_rb.swc

  • Generic Connector - Web Services - Format provider other than SPML?

    Hi.
    Using OIM, I need to "talk" with Windows Sharepoint [Web] Services in order to provisioning an user (actualy, I need to associate a user to a Sharepoint Group).
    To do that, I'm exploring the Generic Technology Connector capabilities.
    From what I understand reading the documentation, the target Web Services have to "understand" the "SPML" format provider standard, and I didnt have found any evidences that the Sharepoint Services are SPML compliant.
    So, my questions are:
    1) Anyone knows of a GTC talking with Web Services non-SPML compliant (in particular, Microsoft-branded Web Services)?
    2) Are there alternative ways of doing what I need (using the Generic Connector... or not)?
    Thanks in advance.

    the way we did it was to get the wsdl of the service you need to talk to.
    try and create the client stubs with axis or xfire (depending on which version of axis you may need other than rpc/encoded format) create the standalone client to test you service.
    once you get it working take you client code, jar it up into the ThirdParty directory along with the required jars for the service implementation.
    then write your adapter using the code from the your client jar.
    Fred

  • Flex3 Beta2 - Resource build fails with locale other than en_US

    Attempting to build a resource SWF for a locale other than
    en_US fails as follows. This built fine with Flex3 Beta1. Same
    command with en_US works fine.
    Any suggestions?
    $ mxmlc -locale fr_FR -source-path src -source-path
    src/locale/{locale}
    Loading configuration file
    C:\work\tools\flex\frameworks\flex-config.xml
    C:\work\tools\flex\frameworks\flex-config.xml(56): Error:
    unable to open 'locale/fr_FR'
    </library-path>

    Gaurav,
    Thanks for the responses. A couple of more questions:
    1) You say if I don't want the localized base resources to
    edit the flex_config file. What change(s) need to be made to that
    file for this case?
    2) Following the directions in the Flex 3 Features
    Introduction: Runtime Localization" document on the Adobe site I
    attempted to run the following command:
    copylocale.exe en_US fr_FR
    This fails, however, with the following eror:
    C:\Program Files\Adobe\Flex Builder 3
    Plug-in\sdks\3.0.0>bin\copylocale.exe en_US fr_FR
    Error: Directory "C:\Program Files\Adobe\Flex Builder 3
    Plug-in\sdks\3.0.0\frameworks\projects\datavisualization\bundles\en_US\src"
    does not exist
    Are there files missing from the kit or do I need to pull
    something else down?
    Thanks,
    Mark

  • Could not convert the data value due to reasons other than sign mismatch or overflow. ADSI Provider

    I'm trying to run the following query against Active Directory using the ADSI Provider using SSMS 2012 SP1:
    SELECT
    TOP901
    *FROMOpenQuery
      ADSI
    'SELECT description
      FROM  ''LDAP://OU=MMICorporate,DC=mmis,DC=mi,DC=com''
      WHERE objectClass =  ''User''
    and objectcategory = ''Person''
    and ''userAccountControl:1.2.840.113556.1.4.803:''<>2
    )AStblADSI
    Msg 7346, Level 16, State 2, Line 2
    Cannot get the data of the row from the OLE DB provider "ADsDSOObject" for linked server "ADSI". Could not convert the data value due to reasons other than sign mismatch or overflow.
    I only have this issue querying the Description Field. 
    I also found a hotfix KB: 887474 for this but it is for Windows 2003.  SQL Server OS I have is Server 2008 R2.  Is there a fix for 2008 R2?
    Thanks

    Thanks for the quick response.
    I checked out the link and I can only convert to Ul8 and when I try I get the same error:
    SELECT
    TOP901
    *FROMOpenQuery
      ADSI
    'SELECT name, convert(UI8, description)
      FROM  ''LDAP://OU=MMICorporate,DC=mmis,DC=mi,DC=com''
      WHERE objectClass =  ''User''
    and objectcategory = ''Person''
    and ''userAccountControl:1.2.840.113556.1.4.803:''<>2
    )AStblADSI
    Am I missing something?
    Thanks

Maybe you are looking for

  • Oracle Upgrade from 10g to 11g [BRANCHED BY MODERATOR]

    Hi Deepak/Folks, Another question that I have is that while doing the Oracle Upgrade on an EP server, the patches were not installed properly and I had to shut down the Patches installation after it did not do anything for a while. Now when I try to

  • Powershell IE autostart and maximization crashes

    Hello, For starters i would like to say that i am really new in powershell and scripting itself, but i hope i have legit problem that someone could help me to solve. I`m trying to create powershell script that starts Internet Explorer and maximizes t

  • Why can't i access the messages in my ipod touch

    why cant i access the messages on my ipod touch can u pleaase Help me guys if someone who knows to connect into my ipod touch to chat with my Friends EAGRELY Waiting for Your Reply..

  • WLS 6.1 - Oracle 8.1.6 - Siteminder - ArrayOutOfBounds issue

    Getting an ArrayIndexOutOfBoundsException when trying to run Wls 6.1 with Oracle 8.1.6 and Netegrity Siteminder (Security module for sign-on privileges) .. ####<Sep 25, 2001 11:10:26 AM CDT> <Error> <Posix Performance Pack> <olc221> <flextrialserver>

  • Help on table update - millions of rows

    Hi, I am trying to do the following however the process is taking lot of time. Can someone help me the best way to do it. qtemp1 - 500,000 rows qtemp2 - 50 Million rows UPDATE qtemp2 qt SET product = SELECT product_cd FROM qtemp1 qtemp WHERE qt.quote