Arial Unicode font for Tamil, etc.?

Looking for some style alternatives to the InaiMathi font included in OS X for the Tamil language, I noted at the the Gallery of Unicode Fonts that the Arial Unicode font includes Tamil characters, and remembered that that font is now included with OS X (10.5). I checked with Character Palette and indeed the Tamil characters are there, but they aren't recognized as equivalent to those in InaiMathi. And when I try to change some Tamil words in a document from InaiMathi to Arial Unicode, nothing happens.
I don't understand a lot about Unicode, but I know the Arial Unicode font has been around for a while (it was more or less the original effort to create a single Unicode font including all the major alphabetic scripts), and don't understand why it would contain the Tamil character set but not work for that script. It doesn't seem to work for Tibetan either, though it contains that character set as well. In fact, according to Character Palette, it seems about 90% of Arial Unicode is "character variants" that "won't display correctly". What's it for, then, anyone have any idea?

+I have always thought Windows fonts cannot be used for display. Could you describe how you use Character Palette to do that?+
Well, not "display" in the sense of opening a file using an OpenType font on the Mac and seeing it display properly. What I do in Character Palette with an OpenType font like Sanskrit2003 is scroll through the font to find the elements I want and double-click them to enter them in a document. Of course this workaround is feasible only for the occasional word, not for whole sentences or paragraphs. I'm not a big time user of any of this, so I can manage for the occasional word I want.
+The reason they do this is because a lot of documents and web pages could specify Arial in them and users would get the idea that OS X does not support Devanagari, Tamil, Tibetan, etc unless they switch the font, which is impossible in Safari.+
Yeah, I can see the reason; but wouldn't it be easier in the long run to just enable OpenType fonts so everyone can use the same fonts? And it is annoying that you can't specify fonts in Safari like in Camino.
+I agree, but have doubts this will happen soon. Perhaps more likely is an app like Mellel which does OpenType could be expanded to cover these scripts.+
Several years ago the developer of Mellel assured me that v.2 would support Indic scripts. But it never happened.
+In the meantime, OpenOffice/X11 does work for display I think.+
Yes, OpenType fonts can be used in OpenOffice/X11 (which is no longer being developed, BTW, now that there's a native OS X version). But not AAT fonts.
+This might interest you:+
http://discussions.apple.com/thread.jspa?threadID=1577715&tstart=0
Indeed, though much of it is over my head. I just want to be able to use the same fonts for Indic languages as everyone else, just as I can in Chinese, etc.

Similar Messages

  • Unicode font for swing components

    Hi all,
    I'd like to set a Swing component (a JLabel) to a particular font so it will properly display Unicode Greek text. I've been reading all about physical vs. logical fonts, and I've read through the various Sun docs/faqs on Internationalization, Fonts, and Unicode, but I just can't get this to work. I think I'm missing something more basic here about selecting my font. My test word is the Greek "khairete," with an accent over the iota. Here is the Unicode:
    \u03c7\u03b1\u1f77\u03c1\u03b5\u03c4\u03b5
    The trick is that accented iota.
    I can launch an xterm that shows the characters I want like this:
    $ xterm -fn -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1 &
    That tells me that if I can get Java to use that font, then I'm all set. I'm trying the following test program:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    public class GUI extends JFrame {
    public static final String MESSAGE = "\u03c7\u03b1\u1f77\u03c1\u03b5\u03c4\u03b5";
    public GUI() throws Exception {
    super();
    Font[] fonts;
    Container container;
    JLabel label;
    fonts = GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts();
    for (int j=0;j<fonts.length;j++) {
    System.out.println(fonts[j]);
    container = getContentPane();
    container.setLayout(new GridLayout(0, 1));
    // try with the default font
    label = new JLabel(MESSAGE);
    container.add(label);
    printFont(label.getFont());
    // see what the default font looks like when PLAIN (to compare with fonts below)
    label = new JLabel(MESSAGE);
    label.setFont(label.getFont().deriveFont(Font.PLAIN, 12));
    container.add(label);
    printFont(label.getFont());
    // this looks the same as the default font, meaning we didn't find what we asked for.
    label = new JLabel(MESSAGE);
    label.setFont(new Font("-misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1", Font.PLAIN, 12));
    container.add(label);
    printFont(label.getFont());
    // this also falls back to the default.
    label = new JLabel(MESSAGE);
    label.setFont(Font.getFont("-misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1"));
    container.add(label);
    printFont(label.getFont());
    // this (of course) falls back to the default.
    label = new JLabel(MESSAGE);
    label.setFont(Font.getFont("not a font name"));
    container.add(label);
    printFont(label.getFont());
    // try every font we've got!
    for (int j = 0; j < fonts.length; j++) {
    label = new JLabel(fonts[j] + ": " + MESSAGE);
    label.setFont(fonts[j].deriveFont(Font.PLAIN, 12));
    container.add(label);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    pack();
    show();
    public static void printFont(Font f) {
    System.out.println(f);
    if (f != null) {
    public static void main(String[] args) throws Exception {
    GUI me = new GUI();
    But nothing in this code succeedings in printing \u1f77. As I've said, the plain old xterm can do it. I think my problem is that I haven't successfully referenced the desired font in the Java code. But how do I do this? These are the fonts available to me, according to the code above:
    java.awt.Font[family=Bitstream Charter,name=Bitstream Charter,style=plain,size=1]
    java.awt.Font[family=Bitstream Charter,name=Bitstream Charter Bold,style=plain,size=1]
    java.awt.Font[family=Bitstream Charter,name=Bitstream Charter Bold Italic,style=plain,size=1]
    java.awt.Font[family=Bitstream Charter,name=Bitstream Charter Italic,style=plain,size=1]
    java.awt.Font[family=Courier,name=Courier,style=plain,size=1]
    java.awt.Font[family=Courier 10 Pitch,name=Courier 10 Pitch,style=plain,size=1]
    java.awt.Font[family=Courier 10 Pitch,name=Courier 10 Pitch Bold,style=plain,size=1]
    java.awt.Font[family=Courier 10 Pitch,name=Courier 10 Pitch Bold Italic,style=plain,size=1]
    java.awt.Font[family=Courier 10 Pitch,name=Courier 10 Pitch Italic,style=plain,size=1]
    java.awt.Font[family=Courier,name=Courier Bold,style=plain,size=1]
    java.awt.Font[family=Courier,name=Courier Bold Italic,style=plain,size=1]
    java.awt.Font[family=Courier,name=Courier Italic,style=plain,size=1]
    java.awt.Font[family=Cursor,name=Cursor,style=plain,size=1]
    java.awt.Font[family=Lucida Bright,name=Lucida Bright Demibold,style=plain,size=1]
    java.awt.Font[family=Lucida Bright,name=Lucida Bright Demibold Italic,style=plain,size=1]
    java.awt.Font[family=Lucida Bright,name=Lucida Bright Italic,style=plain,size=1]
    java.awt.Font[family=Lucida Bright,name=Lucida Bright Regular,style=plain,size=1]
    java.awt.Font[family=Lucida Sans,name=Lucida Sans Demibold,style=plain,size=1]
    java.awt.Font[family=Lucida Sans,name=Lucida Sans Demibold Oblique,style=plain,size=1]
    java.awt.Font[family=Lucida Sans,name=Lucida Sans Oblique,style=plain,size=1]
    java.awt.Font[family=Lucida Sans,name=Lucida Sans Regular,style=plain,size=1]
    java.awt.Font[family=Lucida Sans Typewriter,name=Lucida Sans Typewriter Bold,style=plain,size=1]
    java.awt.Font[family=Lucida Sans Typewriter,name=Lucida Sans Typewriter Bold Oblique,style=plain,size=1]
    java.awt.Font[family=Lucida Sans Typewriter,name=Lucida Sans Typewriter Oblique,style=plain,size=1]
    java.awt.Font[family=Lucida Sans Typewriter,name=Lucida Sans Typewriter Regular,style=plain,size=1]
    java.awt.Font[family=Luxi Mono,name=Luxi Mono Bold,style=plain,size=1]
    java.awt.Font[family=Luxi Mono,name=Luxi Mono Bold Oblique,style=plain,size=1]
    java.awt.Font[family=Luxi Mono,name=Luxi Mono Oblique,style=plain,size=1]
    java.awt.Font[family=Luxi Mono,name=Luxi Mono Regular,style=plain,size=1]
    java.awt.Font[family=Luxi Sans,name=Luxi Sans Bold,style=plain,size=1]
    java.awt.Font[family=Luxi Sans,name=Luxi Sans Bold Oblique,style=plain,size=1]
    java.awt.Font[family=Luxi Sans,name=Luxi Sans Oblique,style=plain,size=1]
    java.awt.Font[family=Luxi Sans,name=Luxi Sans Regular,style=plain,size=1]
    java.awt.Font[family=Luxi Serif,name=Luxi Serif Bold,style=plain,size=1]
    java.awt.Font[family=Luxi Serif,name=Luxi Serif Bold Oblique,style=plain,size=1]
    java.awt.Font[family=Luxi Serif,name=Luxi Serif Oblique,style=plain,size=1]
    java.awt.Font[family=Luxi Serif,name=Luxi Serif Regular,style=plain,size=1]
    java.awt.Font[family=Utopia,name=Utopia Bold,style=plain,size=1]
    java.awt.Font[family=Utopia,name=Utopia Bold Italic,style=plain,size=1]
    java.awt.Font[family=Utopia,name=Utopia Italic,style=plain,size=1]
    java.awt.Font[family=Utopia,name=Utopia Regular,style=plain,size=1]
    java.awt.Font[family=dialog,name=dialog,style=plain,size=1]
    java.awt.Font[family=dialog,name=dialog.bold,style=plain,size=1]
    java.awt.Font[family=dialog,name=dialog.bolditalic,style=plain,size=1]
    java.awt.Font[family=dialog,name=dialog.italic,style=plain,size=1]
    java.awt.Font[family=dialoginput,name=dialoginput,style=plain,size=1]
    java.awt.Font[family=dialoginput,name=dialoginput.bold,style=plain,size=1]
    java.awt.Font[family=dialoginput,name=dialoginput.bolditalic,style=plain,size=1]
    java.awt.Font[family=dialoginput,name=dialoginput.italic,style=plain,size=1]
    java.awt.Font[family=monospaced,name=monospaced,style=plain,size=1]
    java.awt.Font[family=monospaced,name=monospaced.bold,style=plain,size=1]
    java.awt.Font[family=monospaced,name=monospaced.bolditalic,style=plain,size=1]
    java.awt.Font[family=monospaced,name=monospaced.italic,style=plain,size=1]
    java.awt.Font[family=sansserif,name=sansserif,style=plain,size=1]
    java.awt.Font[family=sansserif,name=sansserif.bold,style=plain,size=1]
    java.awt.Font[family=sansserif,name=sansserif.bolditalic,style=plain,size=1]
    java.awt.Font[family=sansserif,name=sansserif.italic,style=plain,size=1]
    java.awt.Font[family=serif,name=serif,style=plain,size=1]
    java.awt.Font[family=serif,name=serif.bold,style=plain,size=1]
    java.awt.Font[family=serif,name=serif.bolditalic,style=plain,size=1]
    java.awt.Font[family=serif,name=serif.italic,style=plain,size=1]
    javax.swing.plaf.FontUIResource[family=Dialog,name=Dialog,style=bold,size=12]
    java.awt.Font[family=Dialog,name=Dialog,style=plain,size=12]
    java.awt.Font[family=dialog,name=-misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1,style=plain,size=12]
    javax.swing.plaf.FontUIResource[family=Dialog,name=Dialog,style=plain,size=12]
    javax.swing.plaf.FontUIResource[family=Dialog,name=Dialog,style=plain,size=12]
    Apparently, I need to use the correct "name" to specify the font. So my next try was this:
    $ xlsfonts -ll -fn -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1
    name: -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1
    direction: left to right
    indexing: matrix
    rows: 0x00 thru 0x30 (0 thru 48)
    columns: 0x00 thru 0xff (0 thru 255)
    all chars exist: no
    default char: 0x0000 (0)
    ascent: 14
    descent: 4
    font type: Character Cell
    bounds: width left right asc desc attr keysym
    min 9 0 0 -3 -13 0x0000
    max 9 8 9 14 4 0x0000
    properties: 23
    FONTNAME_REGISTRY
    FOUNDRY Misc
    FAMILY_NAME Fixed
    WEIGHT_NAME Medium
    SLANT R
    SETWIDTH_NAME Normal
    ADD_STYLE_NAME
    PIXEL_SIZE 18
    POINT_SIZE 120
    RESOLUTION_X 100
    RESOLUTION_Y 100
    SPACING C
    AVERAGE_WIDTH 90
    CHARSET_REGISTRY ISO10646
    CHARSET_ENCODING 1
    COPYRIGHT Public domain font. Share and enjoy.
    XMBDFEDINFO 654
    CAP_HEIGHT 10
    X_HEIGHT 7
    FONT -Misc-Fixed-Medium-R-Normal--18-120-100-100-C-90-ISO10646-1
    WEIGHT 10
    RESOLUTION 138
    QUAD_WIDTH 9
    name: -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1
    direction: left to right
    indexing: matrix
    rows: 0x00 thru 0x30 (0 thru 48)
    columns: 0x00 thru 0xff (0 thru 255)
    all chars exist: no
    default char: 0x0000 (0)
    ascent: 14
    descent: 4
    font type: Character Cell
    bounds: width left right asc desc attr keysym
    min 9 0 0 -3 -13 0x0000
    max 9 8 9 14 4 0x0000
    properties: 23
    FONTNAME_REGISTRY
    FOUNDRY Misc
    FAMILY_NAME Fixed
    WEIGHT_NAME Medium
    SLANT R
    SETWIDTH_NAME Normal
    ADD_STYLE_NAME
    PIXEL_SIZE 18
    POINT_SIZE 120
    RESOLUTION_X 100
    RESOLUTION_Y 100
    SPACING C
    AVERAGE_WIDTH 90
    CHARSET_REGISTRY ISO10646
    CHARSET_ENCODING 1
    COPYRIGHT Public domain font. Share and enjoy.
    XMBDFEDINFO 654
    CAP_HEIGHT 10
    X_HEIGHT 7
    FONT -Misc-Fixed-Medium-R-Normal--18-120-100-100-C-90-ISO10646-1
    WEIGHT 10
    RESOLUTION 138
    QUAD_WIDTH 9
    (Yes, xlsfonts prints two entries.)
    Here is a bit more data:
    [pjungwir@mccurdy unicode_gui]$ uname -a
    Linux mccurdy.nfic.com 2.4.18-14 #1 Wed Sep 4 13:35:50 EDT 2002 i686 i686 i386 GNU/Linux
    [pjungwir@mccurdy unicode_gui]$ cat /etc/redhat-release
    Red Hat Linux release 8.0 (Psyche)
    [pjungwir@mccurdy unicode_gui]$ java -version
    java version "1.4.2_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
    Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)
    If anyone has any suggestions, I would really appreciate it. I'd like to find an answer that doesn't involve editing the font.properties file.
    Thanks,
    --Paul

    Hi Sojan,
    first up, forget the notion of even tinkering with the font.properties file if you can. It's an old, outdated method of setting up the fonts that Sun doesn't even support any more. Use setFont() where you can, and die trying in the process! ;-)
    One thing I would check is which font each AWT component currently thinks it has. It's easy enough to set the font system wide with Swing components, but I'm not sure if that capability extends to AWT components (I've certainly had trouble with it in various places in the past). While you've set up the Chinese font correctly, your AWT components might still be stuck with the Java default (Helvetica, or whatever it is, which is incapable of displaying Chinese), and hence displaying the rectangles because they don't know how to handle the foreign characters. You might need to set SimSun as the font for each of your AWT components individually at a worst-case scenario.
    Hope that helps,
    Martin Hughes

  • Arial Unicode MS font not viewable in Adobe Reader 9

    I have created a form in Acrobat Acrobat X Pro which has some labels in Arial Unicode MS font and when i view the form in Reader 9, I'm not able to view the labels. I have Arial Unicode MS font installed on my machine. What could be the problem?
                                                                                                               Robin

    The use of the Arial Unicode font may seem a simple way to get things done, but in fact this needs enormous care and testing. It will need at least some of the far eastern language packs installed, probably Korean.
    For example, the font will need to be installed on each computer where the form is to be filled. This is not a free font, you cannot even buy it, but it comes with Microsoft Office. So only people who have purchased Office will have the font.
    I would recommend using a Punjabi font. This should be a properly encoded Unicode font, one which works only on copies of Windows with Punjabi support NOT a "trick" font to work on Western Windows. Even so, Acrobat's support for languages outside western and the "big four" far eastern languages (Chinese x 2, Korean, Japanese) might not be sufficient.

  • Prs-t1 is not properly rendering indic unicode fonts. Works fine in prs-t2

    Hi
    prs-t1 is not properly rendering indic unicode fonts (Hindi, Telugu etc).  Same epub works fine in prs-t2 and it renders the fonts properly.
    Solved!
    Go to Solution.

     Hi
    “Ind” had emailed me, a file with a font issue.
    On his first post, he wrote: “…prs-t1 is not properly rendering indic unicode fonts (Hindi, Telugu etc).  Same epub works fine in prs-t2 and it renders the fonts properly…”
    Even I had the same results.
    Only ReaderforPC and PRS-T1 had such font issue.
    All other softwares (MS Word, MS Notepad, Adobe Digital Editions, Calibre, Sigil, etc) and PRS-T2 are viewing Indic Unicode fonts correctly.
    I had copied the “defective” text from ReaderforPC and pasted it on MS Word. But surprise! The same text on MS Word had no font issue anymore!!!!
    That means: “the file is without font issue!"
    The issue is on "Reader for PC" software and on PRS-T1’s firmware!
    Probable solutions.
    For Sony Software Developers:
    Correct ReaderforPC software.
    Correct PRS-T1 firmware.
    For all other in order to read ebooks with Indic Unicode fonts (Hindi, Telugu, etc.):
    Use Sony PRS-T2/T3 Reader Device
    On PC use:
    --Adobe Digital Editions http://www.adobe.com/products/digital-editions.html (to read ebooks with Adobe DRM or DRM-free)
    --Calibre http://calibre-ebook.com/ to read DRM-free ebooks
    --Sigil (free epub editor) http://code.google.com/p/sigil/  to modify ebooks (only DRM-free ebooks)
    -- or other software
    Thanks “ind” for the feedback
    Jannis

  • CR displays unicode fonts as squares

    Hi
    I am deploying a report with chinese chars and its using unicode fonts. However the report does not display it corectly and it shows the lables as squares.
    Development tool. VS2005 +CR and deployed on Win2008 IIS7
    Thanks for any help.
    Regds
    Jay

    Hi Don
    I and Jay are facing this issue together. We had already installed the Arial Unicode font and are using those fonts in CR. Its working in the UAT server but in the live server its' not working.
    I double check that  the font is already installed in the live server. Only difference I can spot is in Live server the actual Windows directory is called SIOUXSIE althought there is still a Windows directory. I have installed the Unicode font in both directories but still having this problem.
    Hope you can help !!

  • Arial Unicode text overlapping after updgrading from ssrs 2008 to ssrs 2008 R2.

    Hi, 
    we recently upgraded our dev environment to SSRS 2008 R2 SP2. We are seeing issues with Arial Unicode font when exported to PDF. Text is overlapping and hard to read. Below is the example especially with special characters. 
    Please advice
    Any help is appreciated
    Thanks

    Hi Lacchi,
    Since the reports was upgraded from SQL Server Reporting Services (SSRS) 2008 to SSRS 2008 R2, this issue cannot be reproduce in our test environment. It’s hard to say the root reason. Maybe it was caused by the upgrade operations. In your scenario, does
    the issue occur on all reports, or only this report? If this report is not complicated, we suggest you recreating the report and deploy it to report server.
    Hope this helps.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Arial-BoldMT font

    Can someone tell me how I can get the Arial-BoldMT font for my iWeb. I continue to get an error message that it is missing every time I go a page to edit.
    If I can't find it, how can I stop the error message?
    Thanks for all you technical supporters out there.

    WooHoo, give that dope (me) a star!!
    Apparently the cat (always blame the cat) deleted some of my Arial fonts. I copied all Arial fonts onto a USB drive from another similar Mac and then had Font Book put them in place. Deleted all duplicates, and I'm back in business. Error window is history.
    Going to go and take a "Smart" pill now...
    Gramps.

  • Font substitution: Arial Unicode for Arial

    We use Arial font for headlines, but InDesign consistently (always) changes Arial into Arial Unicode when I place copy from WORD. It leaves Times New Roman alone, and also other forms of Arial, such as Arial Black are OK. Just Arial has the problem. How do I permanently get it to run Arial? Thanks in advance, Cliff Moore

    If you have a font manager (I'm guessing you don't), you can just turn fonts on and off. Without one, you have to remove fonts from Windows (Start>Control Panel>Fonts), but make sure you have a copy of the file before removing anything.
    However, the fact that it is Arial Greek may mean the problem is something else and not a simple case of two Arials being active at the same time. Do you get a missing font message in ID?

  • Arial Unicode MS font doesn't appear in PhotoShop CS5 for MAC

    Hello,  I'm having a problem with Arial Unicode MS font in MAC. The other apps such as TextEdit, Pixelmator... can see the font but not PhotoShop CS5 and the other apps in the CS5 suite (Flash, Illustrator...)
    Does anyone have the same problem with me? Could you help me to solve this problem?
    Thanks in advance,
    Chinh Do

    Check the entire font menu, all the way to the bottom.  The font may not be in the alphabetical order you expect, but towards the end of the list, among the Asian fonts or so.
    Wo Tai Lao Le
    我太老了         

  • Need help with Tamil unicode fonts in Macbook OSX 10.6.7

    I am really desperate for some help figuring out my Tamil unicode font problem. With great difficulty I got all these fonts set up on my previous ibook G4. When that computer died in the fall I got this new Macbook, and had all my data brought from the old computer to the new one. Fonts were working great, as before. Well recently I had a hard drive failure on my new Macbook (OSX 10.6.7). I now have a new hard drive, and I brought over all my data from an external hard drive using Time Machine. Everything appeared to be working great....except the Tamil fonts. Previously I was using Murasu Anjal unicode font which allowed me to type in Tamil font and view Tamil on webpages, no problem. I understand that Snow Leopard has Tamil font support (including Anjal), so I am confused as to why they were working before but are not working now-especially because on my husband's Macbook Pro (OSX 10.6.5) you can see Tamil fonts on webpages and he has no special Tamil font installed whatsoever. For me the only thing visible is boxes. I am in the midst of finishing up a dissertation which is really dependent on being able to read and write in Tamil fonts. I am desperate to get this fixed but just cannot seem to figure it out. I would greatly appreciate any help or advice!!! Thanks so much!!!

    I've always used the Anjal keyboard with no problem...at least there was no problem before my MacBook hard drive had to be replaced, with a newer operating system, as I had mentioned previously. When I type in Pages, NeoOffice or TextEdit, the results are the same. Many of the characters show up, but vowel combinations--especially the "o" or "u" vowels--show up incorrectly or are unintelligible. Strangely, typing in Tamil font (using Anjal keyboard) in internet searches works perfectly, but ONLY in Firefox (?) NOT in the Safari browser. Prior to re-installing the InaiMathi font, which had seemingly vanished with the transfer of my data to the new hard drive, I was unable to type Tamil anywhere, not even in Firefox. Now it works only in Firefox. For example, if I were to type in Tamil in this window, it works fine: தமிழ் நாடு. 
    Being able to do Tamil searches in Firefox as I had previously is really a major boon for me, but of course I'd love to be able to produce Tamil text, especially as I am about to embark on a 6 month research jaunt to South Asia.
    Many thanks for all your help thus far, and for any further advice you might have.

  • Font Mapping issue with Arial Unicode MS font

    Hi All,
    I was able to do font mapping for Arial Unicode MS font (.ttf) in BIP version 10.1.3.4.
    But after applying the patch 10256764 I am not able to see the Arial Unicode MS font in the Font Selection drop down box in BIP .
    I have copied some other .ttf fonts to the .\ jre\lib\fonts folder and they are appearing in the BIP
    Does BIP patch 10256764 not support Arial Unicode MS font ?
    Please help me...
    its resolved .Font name extention should be in lower case (.ttf)
    Edited by: deepz on May 5, 2011 10:15 PM

    There is no BOLD font TTF files for Arial Unicode MS.  No resolution at this point of time. Closing the issue.
    Edited by: vamsee m on Apr 27, 2011 9:29 AM
    Closing this issue

  • Wrapping but truncating in WEBI with Arial Unicode MS font(Bold only)

    hi,
    My Webi XI R3 report should support Localization.
    So we chose 'Arial Unicode MS' as standard font which can support single-byte as well as multi-byte languages.
    In webi report, Column headers are BOLD where as column values are REGULAR.
    We selected the options 1) Autofit height  2) Wrap Text for all Column headers and values.
    When we change the browser locale to other languages like French and Japanese, Column values appear fine(Wrapping without truncation) as they are Regular. But Column Headers(BOLD) are wrapping with edge characters being truncated. (Observed in Infoview, IE8 browser)
    When we make column headers to REGULAR, issue won't occur. But it's mandatory for us to keep column headers BOLD.
    How to preserve the column headers[without truncation of border character] keeping them Arial Unicode MS BOLD?
    Also, there is an inconsistency behavior for japanese as well as french locales.
    Thanks,
    Vamsee

    There is no BOLD font TTF files for Arial Unicode MS.  No resolution at this point of time. Closing the issue.
    Edited by: vamsee m on Apr 27, 2011 9:29 AM
    Closing this issue

  • Arial unicode ms font printing in sap scripts

    Hi all
    I am supposed to use arial unicode ms font in my sap scripts.
    I am aware of uploading the font file available in control panel through SE73.
    All I wanted to know is the exact RTF format to be given for Arial unicode MS while uploading.
    Please advise.
    Best regards
    Nivetha.

    Hi,
    The procedure to get the correct RTF text is described in the following SAP note:
    130658 - SAPscript: New fonts in the PC Editor
    Regards,
    Aidan

  • Flash CS5 giving me headaches No Bold style for Arial Unicode MS

    Hi,
    We recently upgraded to Flash CS5 and now are facing a lot of problems.
    I created a static textfield on Stage with publish settings Flash player6 As1.0
    I selected the settings as shown in attached screenshot.
    The problem is I can't select Bold from styles as it is greyed out. However this work fine in Adobe Flash CS3.
    Anyone knows what I may be doing wrong

    Hi,
    I think this is nothing to do with Flash CS5 but with the font availability in your system. If the font doesn't have bold, italic variants of the font then the Style combo box becomes grayed out as there is no corresponding glyphs available for that. Normally Arial Unicode MS font doesn't have its Bold variant. Some word processor applications (eg MS Word) may do that by just thickening the available glyphs instead of using the actual bold glyphs from the Font which is incorrect.
    Thanks!

  • I have problem with fonts for my site, i have used "Lucida sans unicode " family for certain texts. it shows perfect in mozilla 3.5 and mozilla 4. But the font not supporting in mozilla 5.0? please help me

    i have problem with fonts for my site, i have used "Lucida sans unicode " family for certain texts. it shows perfect in mozilla 3.5 and mozilla 4. But the font not supporting in mozilla 5.0? please help me

    i have problem with fonts for my site, i have used "Lucida sans unicode " family for certain texts. it shows perfect in mozilla 3.5 and mozilla 4. But the font not supporting in mozilla 5.0? please help me

Maybe you are looking for