Flex Embedding Hindi Fonts Problem - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:36:03Z http://stackoverflow.com/feeds/question/1081759 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem 0 Flex Embedding Hindi Fonts Problem dta 2009-07-04T07:52:55Z 2009-07-04T18:32:04Z <pre> For the attached code, I get the following compile time error : exception during transcoding: Font for alias 'myFontFamily' with bold weight and italic style was not found by family name 'Kundli Hindi Normal' I have installed other Hindi fonts, and I get the same error for them as well. Though I don't get any error for standard fonts such as Arial, Helvetica and even "Microsoft Himalaya"</pre> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&gt; &lt;mx:Button x="96" y="102" label="Button"/&gt; &lt;mx:Style&gt; @font-face { src:local("Kundli Hindi Normal"); fontFamily: myFontFamily; advancedAntiAliasing: false; font-weight:bold; font-style:italic; } Button { fontFamily: myFontFamily; fontSize: 18pt; } HBox { fontFamily: Times; fontSize: 18pt; } &lt;/mx:Style&gt; &lt;/mx:Application&gt; </code></pre> http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem/1082234#1082234 1 Answer by macke for Flex Embedding Hindi Fonts Problem macke 2009-07-04T13:42:19Z 2009-07-04T13:42:19Z <p>It is likely that the font file itself has "invalid" names for the bold and italic versions of the font. I can't remember the exact details, but we had a similar issue where a font had a custom name for it's bold version causing this error. We had to modify the font in order to get the application to compile. Any decent font managing program should be able to give you the details of the font to help you spot the error.</p> http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem/1082755#1082755 1 Answer by rhtx for Flex Embedding Hindi Fonts Problem rhtx 2009-07-04T18:32:04Z 2009-07-04T18:32:04Z <p>I just downloaded the Kundli Hindi font and all I got was a 'normal' font face - no bold or italic. Obviously, we may have gotten the font from different places, and you may have additional font faces, but you <em>have</em> to have separate bold and italic font faces in order to embed a font with bold and italic properties.</p> <p>Also, the font I downloaded is named 'Kundli Hindi NormalA'.... don't know why it was named 'NormalA', rather than just 'Normal', or 'Regular'. You might double-check to make sure yours is in fact named 'Kundli Hindi Normal', if you haven't already. That doesn't seem to be the problem, but it never hurts to re-check that kind of stuff. At least for me :).</p> <p>If you can't get ahold of a bold font face for this font - from my own searching on Google, it looks like it's not available - you can use ActionScript's advanced font features to create bold and semi-bold versions of a font. I don't have any helpful advice for faking italicization, though.</p> <p>The following is an example of using an embedded font (Myriad Pro), and modifying its weight via the <code>subpixel</code> style:</p> <pre><code>.roomViewTitleRoomType { color: "0x8AA1A8"; font-size: 20; fontFamily: "Myriad Pro"; fontAntiAliasType: "advanced"; fontThickness: 200; fontGridFitType: "subpixel"; } </code></pre> <p>You might want to declare a font face with the advanced font manipulation (fontAntiAliasType, fontThickness, fontGridFitType) in it, like the following, but the additional info will just be ignored.</p> <pre><code>@font-face { src: url("/assets/fonts/kundli.ttf"); fontFamily: "Kundli Hindi Heavy"; fontWeight: "normal"; fontAntiAliasType: "advanced"; fontThickness: 800; fontGridFitType: "subpixel"; } </code></pre> <p>Hope that's helpful.</p>