Yes, sadly it is normal, Labels use FTE, whereas ItemRenderers often use
plain TextField, so the renderer used for one thing and the other is not
exactly the same.Kerning may also differ between both classes.

On Wed, Dec 3, 2014 at 2:39 PM, chris_d_k <[email protected]> wrote:

> <http://apache-flex-users.2333346.n4.nabble.com/file/n8961/toFat.jpg>
>
> @font-face
> {
>     src: url("../assets/fonts/arial.ttf");
>     fontFamily: StandardFontAsCFF;
>     fontWeight: normal;
>     embedAsCFF: true;
> }
>
> @font-face
> {
>     src: url("../assets/fonts/arialbd.ttf");
>     fontFamily: StandardFontAsCFF;
>     fontWeight: bold;
>     embedAsCFF: true;
> }
>
> @font-face
> {
>     src: url("../assets/fonts/arial.ttf");
>     fontFamily: StandardFont;
>     fontWeight: normal;
>     embedAsCFF: false;
> }
>
> @font-face
> {
>     src: url("../assets/fonts/arialbd.ttf");
>     fontFamily: StandardFont;
>     fontWeight: bold;
>     embedAsCFF: false;
> }
>
> s|Label
> {
>     fontFamily: "StandardFontAsCFF";
>     fontWeight: normal;
>     color:      #848484;
> }
> /*The Style I used for the label...*/
>     .smallText
>     {
>         fontFamily: "StandardFontAsCFF";
>         fontLookup: embeddedCFF;
>         fontWeight: normal;
>         fontSize: 14px;
>     }
>
> /*The Style I used for the ItemRenderer*/
>     itemRenderer|NewsItemRenderer
>     {
>         fontSize: 14px;
>     }
>
> Is this normal???
>
>
>
> --
> View this message in context:
> http://apache-flex-users.2333346.n4.nabble.com/Flex-Mobile-font-looks-bolder-in-Label-tp8961.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>

Reply via email to