Hello, I've embedded the Futura font family in my Flex application. Can the text within the htmlText property of a mx:Text tag access these fonts?
For example, I have the following stylesheet "mystyle.css":
@font-face {
src: url("/fonts/lte50154.ttf");
fontFamily:futura;
}
.bodyText {
font-family: "futura";
font-size: 12pt;
text-align: left;
color: #000000;
}
And I have the following line within my mxml file:
<mx:Text htmlText="<span class='bodyText'>HELLO!</span>" />
Thanks!
Min

