Unable to write text in Hindi Language in Flex running application

I am not able to write text in Hindi in flex running application.
I have installed Hindi font by window system CD and all I did for font installation.
But still I am not able to write in Hindi in the running flex application by using Flash Player with all version.
I am able to write text in Hindi in MS Word, even in the flex builder editor and all the place but not in the running application.
Is Flash Player doesn’t support Hindi Writing?
My running application support all other languages except Hindi.
Please help me. It’s very urgent.
Thanks In Advance

Hello GargMoniKa
even we are facing the same problem.
we have a requirement of writing HINDI text using English Keyboard.
you have mentioned above that you have implemented the other languages.
can you please share the code so that we can try for other languages.
i m really in need of it.
thnk u in advance...

Similar Messages

  • What is the best font to use for Thai Language in Flex Mobile Applications ?

    Hi
    I am facing issues with Thai language in flex mobile applications. I am using Tahoma font and facing issues in TextInput
    Whith Tahoma font text Offset setting to far from the starting of the text input .
    Can any one suggest me the best font to use with Thai language ?
    Many thanks in advance for your help .
    Regards,
    Kamal

    Personally, I prefer uncompressed TIFF or PNG.  But many times it won't matter ... you'll be dropping the images into an SD Sequence, so they will lose resolution on output.
    -DH

  • Unable to write text in safari

    Since the last update I've been noticing that many times when I'm typing on a web page (pages that I've visited for years) safari, atomic, and chrome browsers will stop allowing me to edit or create text within boxes made to type out text. I've tried clearing all the browsers caches, etc. I've tried to see if its isolated to only one program and its not. Initially I can type, but if I navigate from the page in another tab, touch outside the text box on accident, or enter a couple paragraphs the ability to write text stops. This is not in text boxes that have a limited number of characters either.  I order to say, edit a profile on a dating site or Facebook I have to open notes, type out my blurb of text, and then paste it into the text box. The only thing it will allow me to do is delete text within the box or paste in text (and i cant even do this sometimes.) the problem is getting progressively worse. It almost feels like a virus would on a windows computer.

    I restored it from backup. I have lots of docs in pages and stuff I can't lose. I don't have the integration that macs have since I have the windows computer. I did everything the people on the AppleCare said to do. They can't figure it out either. I thought I'd see if anyone else is having or have had the same issue.

  • Write sms in Hindi Language

    Please can anybody tell me how can i write sms in various indian languages on my N97 mini....
    Thanx
    Vipin

    Hello GargMoniKa
    even we are facing the same problem.
    we have a requirement of writing HINDI text using English Keyboard.
    you have mentioned above that you have implemented the other languages.
    can you please share the code so that we can try for other languages.
    i m really in need of it.
    thnk u in advance...

  • Unable to clear text Field in Multi Screen JFrame GUI Application

    i am working with a Swing GUI project where I want to accept user input in a
    text field
    I have used singleton pattern which will create only one instance of object
    due to this when i move from one scree to another the input of textfield
    doesnt updated I have used setText method to clear the JTextField but it wont
    works
    Program one -- 1st screen
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import java.awt.event.*;
    import javax.swing.JTextField;
    public class Frame1 extends JFrame
    public static Frame1 frame1;
    public JButton button;
    public JTextField input;
    public static Frame1 getInstance()
    if(frame1==null)
    frame1 = new Frame1();
    return frame1;
    public JButton getJButton(String mytext)
    JButton button = new JButton();
    button.setText(mytext);
    button.setBounds(450,450,150,50);
    return button;
    public void myGUI()
    JPanel panel = new JPanel();
    panel.setLayout(null);
    button = getJButton("1st Frame");
    addActionListener(button);
    input = new JTextField(10);
    input.setBounds(200,300,100,30);
    panel.add(input);
    panel.add(button);
    add(panel);
    setUndecorated(true);
    setSize(1024, 768);
    setVisible(true);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    public void addActionListener(Object obj)
    try{
    JButton button1 = (JButton)obj;
    button.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae)
    String text = "";
    input.insert("", 0);
    Frame2.getInstance().myGUI();
    Frame2.getInstance().repaint();
    dispose();
    catch(Exception e1)
    System.out.println("Exception==> "+e1.toString());
    public static void main(String[] args)
    Frame1.getInstance().myGUI();
    Frame1.getInstance().repaint();
    program 2 - 2nd screen
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import java.awt.event.*;
    import javax.swing.JTextField;
    public class Frame2 extends JFrame
    static Frame2 frame2;
    public JButton BackButton;
    public JTextField input;
    public static Frame2 getInstance()
    if(frame2==null)
    frame2 = new Frame2();
    return frame2;
    public JButton getJButton(String mytext)
    JButton button = new JButton();
    button.setText(mytext);
    button.setBounds(450,450,150,50);
    return button;
    public void addActionListener(Object obj)
    try{
    JButton BackButton1 = (JButton)obj;
    BackButton.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    input.setText("");
    Frame1.getInstance().myGUI();
    Frame1.getInstance().repaint();
    dispose();
    catch(Exception e2)
    System.out.println("Exception==> "+e2.toString());
    public void myGUI()
    JPanel panel2 = new JPanel();
    panel2.setLayout(null);
    BackButton = getJButton("2nd Screen");
    addActionListener(BackButton);
    input = new JTextField(10);
    input.setBounds(200,300,100,30);
    panel2.add(input);
    panel2.add(BackButton);
    add(panel2);
    setUndecorated(true);
    setSize(1024, 768);
    setVisible(true);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    In this application the status of TextField input remain same means it shows
    the earlier input in the textfield wnen I come to earlier or next screen.
    what is the solution to clear the TextField input while moving from 1st
    scrren to 2nd screen.

    multiple screens = multiple posts
    well done indeed - just another farking cross-poster
    [http://www.coderanch.com/t/492998/Swing-AWT-SWT-JFace/java/unable-clear-text-box-Multi#2218566]

  • Administrators unable to write to a text file created by another Administrator on Windows Server 2008.

    Why are Administrators unable to write to a text file created by another Administrator on Windows Server 2008?
     --- The Administrators already have full control so how do I fix this? ---
    Example:  On a Windows Server 2008 (SP1): user A (who belongs to the Administrators group) logs in and creates a directory C:\foo and creates a file readme.txt in the foo directory.  User B (also a member of the Administrators group) logs in and opens C:\foo\readme.txt in notepad. User B types something and tries to save the file. User B cannot save the file…an option to save as some other file name is presented. The security permissions of C:\foo\readme.txt show that Administrators have full control.  
    Work around 1: Explicitly add user B to have full control over the foo directory. The problem is that all the all other Administrators still need to be added (current and future).
    Work around 2: Change the Users security permission to be full control on the foo directory. (this seems dangerous!)
    It is interesting to not that this same procedure is not a problem in Windows Vista. (Any insight about the difference?)
    Sincerely,
    Ian 

    so there is no way to change this without literally shutting down the UAC?
    I have files that  I need to modify all the time, and it is very annoying to have to save as to my desktop modify and then copy and paste the file again.
    I would also rather not give myself permissions to the entire C:\ Drive even specified Folders or documents, etc......
    You can change these settings without bringing down the UAC
    <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:Calibri; mso-bidi-font-family:"Times New Roman";} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} -->
    1.    Click Start, type gpedit.msc and press Enter.
    2.    Expand Computer Configuration -> Windows Settings -> Security Settings -> Local Policies -> Security Options.
    <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:Calibri; mso-bidi-font-family:"Times New Roman";} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} -->
    3.    Double-click “User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode” on the right pane.
    a.    Choose “Elevate without prompting” and click OK.
    b.    Double-Click “User Account Control: Admin Approval Mode for the Built-in Administrator account”, Click Enable, Apply and then OK
    c.     Double-Click “User Account Control: Run all users, including administrators, as standard users”,Click Enable, Apply and then OK
    Then reboot the Server. You should now have the ability to modify any document, etc....

  • Hindi language in text area

    Hey Experts,
    I have a module where I have to display translation for
    Arabic,Spanish,Hindi in text area where user
    inputs text in English Language. This translation is done by
    the Google Translation API.
    I have succeeded in getting translation for Arabic and
    Spanish which is displayed fine in the Text Area.
    But for Hindi, its displaying boxes.
    How do I go about for this issue?
    The next thing what I did is
    I applied Hindi font style to text box when Hindi language is
    selected but still no success :(

    Hi there Linda
    I'm not sure where you are looking to say that your "project
    global settings" are English.
    Have you looked here? Click File > Record/Create > New
    Project
    When you reach the recording dialog (with the teal colored
    frame and the check boxes), click the Advanced button.
    See image linked below:
    Click here to see the
    image
    Cheers... Rick

  • Problems with Hindi language translation into DW8

    Hi,
    I have a whole truck load of problems ...but two have so far
    beat me!
    I have a Hindi text translation in MS Word ( yes I know copy
    and paste is
    evil...but (I have no other option)
    I have installed "Shusha" font, as advised by the translators
    who created
    the document. I have installed and applied the ( Win XP)
    Hindi language bar
    and keyboard.
    I am using the DW 8, P7 Ennergi Pack.- 3 col, left menu
    verion
    Because I do not read, write or even understand Hindi, I
    simply over paste
    the English with the Hindi version. In the "main body" centre
    column I dont
    have any real problems with this. BUT the P7 menu does not
    like being messed
    about!
    If I overcopy text while in theP7 "modify" interface...the
    Hindi become
    gobbleDegook....when I close the box , right click and select
    the text..then
    apply the shusha font...its seems OK....but when I re-open
    the "modify"
    interface....all the links I converted...dont show. They are
    there in the
    code and show up on the page..some links work - most dont.
    I have tried being a complete moron and simply pasting hindi
    text over the
    english in the normal page work mode.....useless!
    I have completed an "Arabic" version without any of these
    problems...well
    they started as above but I resolved them....the Hindi just
    wont have it!
    If by chance there is a Hindi capable web guy or
    guyess..with a bit of
    spare time who can give me
    some pointers...I will be more than grateful.
    ( Previously posted on the Project Seven newsgroup &
    hoping for advice.
    I have been advised of WEFT the MS embedded fonts utility for
    web pages -
    spo far not changed anything for t he better - but still
    working with it)
    TIA
    SB

    I think the problem has been identified - <u>should</u> be possible to solve in short-term (no guarantee )...
    Frank
    Edited by: Frank Moebius on Sep 22, 2009 11:39 AM
    The bug - which caused most of the trouble - had been fixed in 2006 - connection time has gone down to about 1/50!
    However, the design (loading translations when logging on) has not been changed so far. Subsequently using a large number of translations may still cause connection times which may be considered "too long".

  • Printing HINDI Language is possible in Offline Interactive Adobe forms

    Hi All,
    Actually I am working on Offline Interactive Adobe forms.So my requirement is print the offline adobe forms in HINDI language.
    That form will goes to the user through email with some HINDI text, headings and fields names. After that user can edit and enter some HINDI text in the PDF form.
    My question is it is possible to design the layout in HINDI language , If possible what are the things installed in Server side.
    After pdf goes to the user how the user will enter the data in HINDI language using keyboard.
    Your help will be appreciated.
    Thanks&Regards,
    Ravikiran.

    Hi Ravi,
    You have to install the font
    http://help.sap.com/saphelp_nw70/helpdata/en/d0/cdf29623c8432fa1545df5f43176de/content.htm
    Print adobe form in local language (Hindi)
    Make sure the two things available:
    1. Embed fonts option enabled.
         This option is available in Designer->File->Form Properties->Save Options panel
         Important: This will work only for PDF files (not for XDP)
    2. Adobe Reader Extended Languages support font pack installed on the target machine the Hindi font is not installed.
    Regards
    Sandy

  • Hw to write text in mail body in UTL SMTP in oracle

    hi all
    i m using oracle demo mail package to send csv file as attachment to different users its successfull and i can also able to attach text file to it
    but i m unable to write any text in mail body .
    e.g.
    mail body can be--
    hi
    This is test mail.
    Regds
    Sender.
    can anyone suggest some way?

    u can try this code
    this code takes the file from database and attach with mail and also send the body with it
    it works fine.
    CREATE OR REPLACE
    procedure pdf_mail(
    p_sender varchar2, -- sender, example: 'Me '
    p_recipients varchar2, -- recipients, example: 'Someone '
    p_subject varchar2, -- subject
    p_text long, -- text
    p_case_id number,
    p_email_log_id number
    -- p_filename varchar2, -- name of pdf file
    p_blob   blob     pdf file
    ) is
    conn utl_smtp.connection;
    i number;
    len number;
    p_message_part varchar2(32767);
    cursor c1 is
    select file_name,document_pic
    from clm_case_attachments ca,email_log_detail em
    where
    case_id = p_case_id
    and ca.CASE_ATTACHMENT_ID = em.ATTACHMENT_ID
    and em.ACTIVE = 'Y'
    and em.EMAIL_LOG_ID = p_email_log_id;
    BEGIN
    conn := demo_mail.begin_mail(
    sender => p_sender,
    recipients => p_recipients,
    subject => p_subject,
    mime_type => demo_mail.MULTIPART_MIME_TYPE);
    demo_mail.attach_text(
    conn => conn,
    data => p_text,
    mime_type => 'text/html');
    for lp in c1 loop
    demo_mail.begin_attachment(
    conn => conn,
    mime_type => 'application/pdf',
    inline => TRUE,
    filename => lp.file_name,
    transfer_enc => 'base64');
    -- split the Base64 encoded attachment into multiple lines
    i := 1;
    len := DBMS_LOB.getLength(lp.document_pic);
    WHILE (i < len) LOOP
    IF(i + demo_mail.MAX_BASE64_LINE_WIDTH < len)THEN
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(lp.document_pic, demo_mail.MAX_BASE64_LINE_WIDTH, i)));
    ELSE
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(lp.document_pic, (len - i)+1, i)));
    END IF;
    UTL_SMTP.Write_Data(conn, UTL_TCP.CRLF);
    i := i + demo_mail.MAX_BASE64_LINE_WIDTH;
    END LOOP;
    demo_mail.end_attachment(conn => conn);
    end loop;
    demo_mail.end_mail( conn => conn );
    END;
    /

  • Enter text in other languages in String Control

    Hi,
    Is it possible to type text in other languages(chinese, japanese,hindi,etc...) in Labview 8.2. 
    In runtime I want to enter the text in String control.
    Regards,
    Raja 

    Please go through this and also see this thread from where i got this link.

  • 5700 hindi language pack

    Once i have a hindi language installed on my device but after updating to V5.11 the default hindi language is all gone i can see the hindi message but im unable to type it 
    + that TRANSLATION APP dosent work as i want use that hindi font for searching through the contacts
    so now im stuck ..!!
    so..
    how to add HINDI langauge in my device ..
    ANY KIND OF HELP IS APPRICIATED .!!
     CURRENT SPECS--
    V 5.11
    RM-230
    NOKIA 5700(22.01)

    The ONLY place where you can get the language pack installed is Nokia Care ..but I wonder if they too will do that for this more than 7 year old device ...
    ..and THIS shows why you lost the Hindi language  ..

  • Error Log entry Unable to write file with XML Saver

    Hi all,
    I have just encountered the following problem. I am saving a XML file using the XML Saver. Another BLT reads the file, changes something, and saves it again with the same name.
    The file is saved, but the NetWeaver SAP Log gives the error
    "Unable to write file /usr/sap/<SID>/JC00/j2ee/cluster/server0/apps/sap.com/xappsxmiiear/servlet_jsp/XMII/root/CM/<folder>/file.xml"
    Is it a problem with the new storage mechanism in MII 12? Even if I delete the file first and then save it again with the same name, the error is displayed (though the file is saved).
    Michael

    Hi Mike,
    no, the Debug only says "Begin Action XML Saver" and "End Action XML Saver".
    The action however writes the file, the contents has changed after the BLT has run.
    Well, I have just tried the Text Saver with the same file (name and contents). It also gives the error. I now wanted to delete the folder. The folder disappered from the workbench view, and the Netweaver log says "Unable to process service message".
    I then clicked "publish" on the parent folder and tried to create the folder again, but although the folder was not displayed, the workbench said "the folder already exists". When I start my BLT, it could write the file into the folder which then reappeared in the workbench.
    Hm, maybe our installation has some problems? Feels like missing authorizations...
    Michael

  • PDF bookmark in Hindi language

    Hi,
    I am using iText API to generate PDFs in Indian (Hindi) language using Arial Unicode MS font. Is there any way to generate the bookmark in Hindi text with iText API or any other API?
    It would be of great help if someone can help with some examples.
    Thanks in advance,
    Jagdish.

    Did you get any solution on this as i am also working on same subject task.

  • Hindi language in Nokia 500

    Nokia has been peoples mobile in india selling mobiles in urban as well as rural india alike for a very long time.
    It is too disappointing that Nokia does not respect such a huge local market for it's products that it cannot provide the mother tongue of whole india. Let alone other regional languages.
    I would be so delighted if nokia allows me to type Hindi language on my Nokia500.
    Please help.

    See if this works for you -
    Open the write message window. select options-Writing language or dictionary - Hindi.
    If not you may try first setting the phone language to Hindi.
    If even that does not work you need to contact the authorised Nokia Care Centre in your area & get the language pack installed.
    Please note that the language pack will be removed if you reset the phone or reinstall or update the firmware.
    Please mark the post as solution if it solves your problem.
    Current Device - Nokia Lumia 1020/920

Maybe you are looking for

  • Question on use of shared memory objects during CIF executions

    We have a CIF that runs in background via program RIMODACT that is invoked from our external job scheduler.  (The schedulere kicks off a job - call it CIFJOB - and the first step of this job executes RIMODACT.) During the execution of RIMODACT, we ca

  • Premiere CS5: need to feather edges in 16 point garbage matted video

    Meaning, I don't want 4 feathered edges (which seems to be all the "Edge Feather" tool does)... I need 16 of them. Here's what I'm doing, a head, neck over a greenscreen. I'm color keying out the head and neck, then garbage matteing out kind of a hal

  • W530 for Photojourn​alism Student

    Hello, In the past week, I have done extensive research regarding the Lenovo Thinkpad laptops. I've always been a Mac user, coming from a 2010 MacBook Pro 15in, I am looking for an upgrade. Particularly, my eyes have been set on two models: The W530

  • Custom Action - SDK -error

    Based on the "Developing Custom Action in in SAP MII 12.1" i encountered error while running the action block in BLS. In Link Editor I assign 2 values in Inputs and Output to a tracer. When I execute this BLS, I receive following error [ERROR] [Trace

  • Camera profile for Canon G1X

    It's too bad that a profile has not been added to Lightroom 4 by Adobe for the Canon G1X, a great camera that's been out for awhile. Can it be put into Lightroom 5 at least?  ~Steve Sloan