Spark labels won´t show embedded fonts on AIR 4.0
Hello.
After noticing that AIR 3.9 was no longer accepted on the Apple Store (http://flashgamer.com/blog/comments/apple-is-not-currently-accepting-applications-built-with-air-3.9), I downloaded a new Apache Flex SDK (version 4.11 + AIR 4.0 + Flash Player 12.0). I then recompiled my mobile application, with no errors.
But both on the emulator and the device (iPhone 3GS), the spark labels I used in the whole application don´t load properlly the embedded fonts set on the CSS file. They always show the default font style. This is my code:
styles.css
@namespace s "library://ns.adobe.com/flex/spark";
@namespace local "*";
@font-face {
src: url("assets/fonts/CustomFont.ttf");
fontFamily: "CustomFontCFF";
embedAsCFF: true;
}
@font-face {
src: url("assets/fonts/CustomFont.ttf");
fontFamily: "CustomFont";
embedAsCFF: false;
}
.phrase
{
color: #FF0000; /* red */
fontFamily: "CustomFontCFF";
}
App.mxml (The label is in fact inside another view, but I think this is enough to get the concept)
<?xml version="1.0" encoding="utf-8"?>
<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Style source="assets/css/styles.css" />
<s:Label id="phraseLabel" width="100%"
cacheAsBitmap="false"
styleName="phrase" />
</s:TabbedViewNavigatorApplication>
Compilation arguments:
-locale en_US -swf-version=23 -debug=false
I can say the stylesheet is being loaded because the spark label is red, as the CSS specifies. But the font won´t show, even if I set the non-CFF version (CustomFont instead of CustomFontCFF). So, now the app is ready for submitting to the Apple Store, but I´ve lost a basic visual feature on the app (styled labels with custom embedded fonts)...
Anyone else is having this weird issue?
