How to embed custom font (tamil font [ta_IN]) in my android application

We are developing a mobile application (targeting for android & ios) using Adobe Flash Builder 4.6, Adobe AIR 3.5.  Requirement is to localize the content for indian languages, and rite now we are targeting tamil locale.  We implemented the localization, it is working for the locales where the fonts are available on the device, like french, chinese etc., but not for tamil locale.  As the device doesn't have the font, we would like to embed TTF font.
After googling on the subject, these are the steps we did to embed tamil font, without any luck.
1. Used fontswf to convert to SWF
2. In the main application, we embed the SWF (got the Class reference)
3. Registered the font
4. When the locale is changed to Tamil, we are changing the application style (fontFamily) to the Class that we got in Step 2
PS: Currently we are testing on android devices, however the solution needs to work for ios as well
Unfortunately, this is not working.  Requesting your help in this regard!

i am bumping this up. i cannot seem to get this to work on iOS, but was able to get this to work on Android using device fonts.
Anyone here have expereince dealing with the Tamil language on iOS through AIR?

Similar Messages

  • How to embed custom font

    Guys, on a daFont web I found some fonts and I would like to use them on my web which I make with animate. How can I embed that font in animate document? That font is called delicate little flower. If somebody could show me how to do it I will be really grateful.
    Thank you.

    i am bumping this up. i cannot seem to get this to work on iOS, but was able to get this to work on Android using device fonts.
    Anyone here have expereince dealing with the Tamil language on iOS through AIR?

  • How to set custom font family in qml label in black berry 10 os

    how to set custom font family in label text  qml in black berry 10 OS

    AFAIK, this is not the correct way to set the image location.
    We call the working directory as context, so inside the context root along with WEB-INF, maintain a folder with name img and put all the images in that directory.
    You can use either .\<image_folder> or the optimum way would be (if you are using JSPs) to use getContext() method and traverse accordingly.
    FYI,,, using getContext() will give you context root directory, from there it is as simple as accessing any other folder.
    Hope this answers your question.
    Cheers,
    Jeets.

  • HOW TO: using custom fonts in native storyboard views from an ANE on iOS

    Hey,
      In our apps, we have embedded storyboards into an ANE, and successfully used those screens in an AIR app, and figured out how to use custom fonts in those views.
      I wrote a quick blog post about it and just thought I'd share it real quick in case it helps someone.
    ANE for iOS with Custom Framework – Using Custom Fonts | khef.co

    Hi WayHsieh,
    >>can I just "install" fonts through Word App? Does Word Apps have enough privilege to install fonts on Windows? Can I just click a button in Word App, and then it will install fonts automatically?<<
    Based on my understanding, it is hard to achieve the goal. Because the app webpage is hosted inside an Internet Explorer control which, in turn, is hosted inside an app runtime process that provides security and performance isolation and it is under
    low-Integrity level.
    Here is the figure for apps for Office runtime environment in Windows-based desktop and tablet clients:
    You can get more detail about Privacy and security from links below:
    Privacy and security for apps for Office
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to embed icon in dmg of MAC OS in air application?

    hi
    How to embed icon in dmg of MAC OS in air application? while in windows application it working file if  i set <icon> tag in windows application's .xml file.....
    Please reply

    solution ::
    add this code in windows app of AIR
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="init()" layout="absolute" xmlns:local="*">
    <mx:VBox>
    <mx:Label text="Jay Mahadev" fontSize="32" />
    </mx:VBox>
    <mx:Script>
    <![CDATA[
    private function init():void
    if(NativeApplication.supportsDockIcon){ 
    var dockIcon:DockIcon = NativeApplication.nativeApplication.icon as DockIcon;NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE,undock);
    //dockIcon.menu = createIconMenu();
    else if (NativeApplication.supportsSystemTrayIcon){ 
    var sysTrayIcon:SystemTrayIcon = NativeApplication.nativeApplication.icon as SystemTrayIcon;sysTrayIcon.tooltip =
    "Stopwatch";sysTrayIcon.addEventListener(MouseEvent.CLICK,undock);
    //sysTrayIcon.menu = createIconMenu();
    public function undock(event:Event = null):void{stage.nativeWindow.visible =
    true;NativeApplication.nativeApplication.icon.bitmaps = [];
    ]]>
    </mx:Script>
    </mx:WindowedApplication>
    and also in windowapplication.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/1.0">
     <icon>
    <image128x128>/icons/128x128.png</image128x128>
    <image48x48>/icons/48x48.png</image48x48>
    <image32x32>/icons/32x32.png</image32x32>
    <image16x16>/icons/16x16.png</image16x16>
    </icon>
    </application>
    Reference Link :::
    http://www.adobe.com/devnet/air/flash/quickstart/articles/stopwatch_dock_system_tray.html

  • How to embed unicode fonts in fillable form.

    Hello friends,
    I had created a normal unicode Pdf form. IT shows perfectly.
    But when i make this form as a fillable pdf the unicode charaters converts into junk and the form is become unreadable.
    Attached here a normal unicode pdf form. As well as form_fillable.pdf which is junked after created a fillable
    regards
    KD

    Check this forum post (though that is for 6i, it would be of helpful for you)
    How to use unicode fonts in Oracle forms 10g?
    -Arun

  • How to embed a font air Android App????

    Hi, im new to this forum so please forgive me if i question in the wrong section.
    I am Beginner and am working on an air android game in flash cs6.. i need embed fonts please help me sort out htis problem..

    The easiest for me is to simply embed your font into your main document class, like this:
    package
         import flash.display.Sprite;
         import flash.text.*;
         public final class MyApp extends Sprite
              [Embed(source="../fonts/ITCAvantGardeStd-Bold.otf", embedAsCFF = "false", fontWeight="bold", fontName = "ITCAvantGardeStd_DemiAndBold", mimeType = "application/x-font-truetype", unicodeRange="U+0021-U+007E, U+00A9, U+00AE")] // Main characters + Copyright and Registered glyphs
              static public var ITCAvantGardeStdBold:Class; // that's what the embed gets baked into
              Font.registerFont( ITCAvantGardeStdBold ); // do this once per font
              public function MyApp():void // Constructor
                   // Create a textformat that uses the font
                   var tft:TextFormat = new TextFormat( "ITCAvantGardeStd_DemiAndBold", 20, 0xffff00, true );  // size = 20 pix, color is yellow, bold = true, matching the font weight
                   // create a text field
                   var tf:TextField = new TextField();
                   with ( tf )
                        antiAliasType = AntiAliasType.ADVANCED; // optional
                        defaultTextFormat = tft;
                        embedFonts = true; // this is using an embedded font
                        width = 100;
                        autoSize = TextFieldAutoSize.LEFT;
                        wordWrap = true;
                        text = "Hello world ! blah blah blah blah blah blah blah blah blah blah blah blah";
                        height = textHeight + 8; // nice and tight
                        border = true; // for fun
                        borderColor = 0xffff00; // yellow
                   addChild( tf );
         } // end of: class
    } // end of: package
    The embed statement contains several optional properties, like fontWeight, fontStyle, and fontFamily.
    Check here for info:  http://divillysausages.com/blog/as3_font_embedding_masterclass
    Note: Alternatively, you could use Flash Professional to embed the font into the document class via the IDE ( like so: http://www.adobe.com/devnet/flash/quickstart/embedding_fonts.html ).
    Also, for these kinds of questions, I recommend:
    1) O'Reilly -- Essential ActionScript 3.0
    2) O'Reilly -- ActionScript 3.0 Cookbook

  • How to embed custom search field in toolbar

    My organization wants to integrate the Zoom Search Engine by
    Wrensoft with RoboHelp 7. We want to embed the search input field
    for Zoom in the main toolbar of the Help window. The skin editor in
    RoboHelp does not provide an easy way to do this. I can add a
    custom button that links to the custom search form, but I cannot
    figure out how to embed a custom search field in the toolbar. Does
    anyone have any experience or direction you can provide us?

    I very much doubt that can be done. There's a topic on my
    site about integrating ZoomSearch but the start point of any search
    is a field that ZoomSearch provides in the htm page it creates.
    Getting that field onto your toolbar is going to be outside the way
    Zoom was designed.
    Your developers would have to pull apart the mechanics of
    that page and figure it out, if it can be done.
    Have you tried approaching WrenSoft to see if they can
    suggest anything?
    Personally I think it is going to be a massive effort for
    minimal benefit. What's the objection to clicking a button that
    provides a page with the field and the results? If you get the
    field into the toolbar, the search page has still got to display to
    show the results.

  • How to add Google Ads or similar in "AIR for Android" application?

    Hello,
    I have developed my android application (AIR for Android) in Flash Professional CS5.5. It's completed and fully tested on multiple android phones. Now I want to add Google Ads in my application to make some money.
    What I already know:
    I know that Adobe provides AdMob native extension API which allows you to add Google Ads in your app. But unfortunately, it's not free.
    What I want:
    I want a free resource through which I can add ads in my application.
    Please guide me how can I achieve this?
    Thanks in advance,
    momersaleem

    Yes, its for me broken, too.
    I found the link in this thread:
    http://forums.adobe.com/message/4036804
    Maybe try to contact the author or one of the thread participants for an unbroken version?

  • How to add custom font in Oracle BI 11 analysis

    Hi there!
    I need to change column's font in analysis. How to add my ttf font in the default font list in the properties page?
    Thanks!

    Hi,
    Pl try this.
    MiddlewareHome/Oracle_BI1/bifoundation/web/schemas, edit analysis_formats.xsd file and add new style in this section.
    <xs:simpleType name="fontFamily">
    <xs:annotation>
    <xs:documentation>
    family of fonts supported
    </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string">
    <xs:enumeration value="Arial"/>
    <xs:enumeration value="Arial Black"/>
    <xs:enumeration value="Arial Narrow"/>
    <xs:enumeration value="Courier New"/>
    <xs:enumeration value="Garamond"/>
    <xs:enumeration value="Lucida Sans Unicode"/>
    <xs:enumeration value="Microsoft Sans Serif"/>
    <xs:enumeration value="Times New Roman"/>
    <xs:enumeration value="Tahoma"/>
    <xs:enumeration value="Verdana"/>
    </xs:restriction>
    </xs:simpleType>
    then add font name in the below path as well
    edit Commonuitemplates.xml in the following path ,Middleware\Oracle_BI1\bifoundation\web\msgdb\messages and then add in the font sections. you can find by search font types.
    tnx

  • How do I clear the recent documents screen on the android application when the clear icon is no longer visible?

    I have uninstalled and reinstalled the software but the clear recent documents icon is no longer visible as formerly experienced.

    Hi,
    The 'Clear Recents' button which was provided in previous releases only *cleared* the Recent list and did not delete the files. The files stayed in your document hierarchy. This button has been removed in the latest release. For deleting the files, you can go to the Documents/Acrobat.com tab and delete the files individually. However, please note that the files will be permanently deleted from your device. Please let us know if this is not a viable option for you. We would like to hear more about your use case.
    Thanks,
    Mehwish

  • How to embed font into PDF - Listener 2.0.2 FOP configuration

    I need to embed custom font into PDF report in order to print one of Slovenian characters: Č (C with caron) This character shows as # sign when I generate standard PDF report using Apex 4.2.2 and Listener 2.0.2. As far as I understand 14 native Adobe PDF fonts are based on Windows 1252 encoding. This encoding doesn't include mentioned Slovenian character.
    Oracle White paper http://www.oracle.com/technetwork/developer-tools/apex/learnmore/custom-pdf-reports-1953918.pdf says:
    "APEX Listener 2.0.2 supports only the Base-14 fonts. To configure additional fonts, see this document: Apache(tm) FOP: Fonts "
    I was able to embed my custom font into standard Apache FOP report server. Solution consist of saving two files my_font.ttf and my_font.xml to server and update of FOP userconfig.xml file (fonts part where path to saved 2 files have to be specified)
    How can I do this on Apex Listener 2.0.2 ? Where is located userconfig.xml file?
    Simon

    Hello Ivaylo Mutafchiev,
                                           There is no way we can control the fonts in the created PDF / while creating the PDF using the class cl_document_bcs in your PDF creation logic.
    You can try some other approach of creating PDF from the Smartforms OTF stream data .
    Try using the follosing FM for the PDF creation and sending email:
    CONVERT_OTF_2_PDF
    CONVERT_OTF_AND_MAIL
    SO_OBJECT_SEND
    CONVERT_OTF_AND_MAIL_NEW (Try this but this FM still uses  the class that you are using currently. But give it a try and see the results)
    Hope this answers your question.
    Thanks,
    Greetson

  • How to Embed Fonts and make Grayscale in Acrobat Pro 9 PDF

    I supplied my printer with a PDF but he says that I need to "Embed The Fonts" in the PDF.
    I made the original document in MS WORD and then I created the PDF in Acrobat Pro 9 but nowhere
    along the way did I see anything that asked me to Embed The Fonts.
    He also says that the type is in RGB but it needs to be in Grayscale.
    When I created the PDF I didn't see any option along the way that gave me a choice between
    RGB and Grayscale.
    Any ideas how to achieve these two effects while going from an MS WORD document to a PDF using
    Acrobat Pro 9 please?
    Any help would be much appreciated.

    Sorry to bother you with my problem but I wondered if you could explain a little bit more about things I didn't understand.
    1 - you said > On a Mac there is no advantage to using the Word plug-in.
    Do you mean that I can type directly into Acrobat?
    I thought that a document needed to be created in a word processor first before I could turn it into a PDF.
    Is that incorrect then?
    2 - > Create the pdf file a print file menu gives you greater control.
    I do apologize but I did not understand this statement either, could you please expand on it a little (to a non-techie.)
    3 - > If you use the Press job option setting, the fonts will be embedded.
    I can't find Press job option setting anywhere - I am using Acrobat pro 9 but there doesn't seem to be a menu with Press
    anywhere, could you please expand on this a little bit too please.
    4 - > If the pdf file has already been created it can be converted to greyscale using the Preflight or Convert Colors
    under Advanced -> Print Production.
    I understood this part and I executed it according to your instructions so thank you for that.
    Unfortunately I couldn't find out how to embed my fonts and my printer charged me $75 to do that
    so I was pretty upset about not being able to understand that part of your explanation.
    Since the printer was able to embed the fonts in a document that was already a PDF then it must be possible
    to embed fonts after a PDF has been created, is that correct?
    If that is correct then i don't know how I could not find how to do it because I looked everywhere for that
    ability but I could not find how to do it.
    I'd be very grateful for any further help you could give, thank you.

  • How to Embed fonts in existing PDF file

    HI,
    I want to know how to embed the fonts in an existing PDF file, i do have Acrobat.
    Thanks

    Post your question in the forum for Acrobat.

  • Help a novice! Embedding Custom Font in CS5

    Hi!
    Can someone help me understand how to embed a font in Dreamweaver CS5?
    A quick google search reveals instructions for embedding custom fonts in older versions of Dreamweaver but not recent ones... Is this because its somehow automated in CS5? I'm not really sure what to do! Thanks for any help!

    Can someone help me understand how to embed a font in Dreamweaver CS5
    You don't embed fonts into Dreamweaver.  You embed fonts into your web pages with CSS.
    You will need to find a suitable font. Not all commercial fonts can be embedded without violating copyrights.  Read the fine print in your license very carefully.
    @Font-Face Guide
    http://sixrevisions.com/css/font-face-guide/
    You will need several different file types to support the various browsers and mobile devices
    @font-face font generator
    http://www.fontsquirrel.com/fontface/generator
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • Connect SAP R/3 4.6 to BW

    Hello, We would like to connect one of our sandbox instance to an existing BW system. The R/3 system is a 4.6d. But when I try to use transaction SBIW to launch the extractors, it tells me that this transaction doesn't exist. When I try to run this t

  • CTI Integration with Panasonic KXTDA200 PBX Telephony system

    Dear SAP Gurus, I am currently working for CORM CHIC Implementation project, now we are integrating SAP with Telephony system. Our customer has Panasonic Telephony (PCB) system KXTDA200, and they have Panasonic KXTDA0410 connector to Integrate their

  • How do i choose what GB ipad to buy

    I want to buy an ipad and have a few questions. 1)  What GB should i get?  i would mostly use it to surf the web and also download some music and pictures 2)  Is the retinal display on the newer ipad worth the money for it? 3)  What GB would you reco

  • I can get every OS except mavericks??? Why???

    We want to upgrade one of our iMacs from 10.6.8 to 10.9.0, but the installer is nowhere to be found. I can buy every OS up to 10.8 and get Yosemite for free, but I can't get Mavericks at all??? Am I missing something?

  • Multiple itunes, one account

    I have iTunes on mac, pc, phone and iPad.  My iTunes account(all same user name and password) on PC and Mac have different songs and playlists how can I sync them.  My phone and ipad are aligned with my imac.  My pc is where my itunes account riginat