Ok, I just checked that out.
Looks as though when the font is set to antialias, it uses the
"system name" for the Font, so "Wingdings" if you choose that. If you
set the font to be 'bitmap' and don't antialias, it exports it as
"fontName_SIZEpt_st" or in my test "Wingdings_8pt_st".
You might want to try exporting it as bitmap and then have the CSS in
Flex set to display it with antialiasing.
The other option is to use the .TTF file for Wingdings and use that
reference inside of the Flex CSS file:
@font-face {
src: url("../fonts/Wingdings.ttf") ;
fontFamily: Wingdings;
unicodeRange:
U+0020-U+0040, /* Punctuation, Numbers */
U+0041-U+005A, /* Upper-Case A-Z */
U+005B-U+0060, /* Punctuation and Symbols */
U+0061-U+007A, /* Lower-Case a-z */
U+007B-U+007E; /* Punctuation and Symbols */
}
good luck,
jon
On Sep 17, 2007, at 4:57 AM, candysmate wrote:
Jon, I tried this today and the font name shown in the Flash 8 debug
variables windows is 'Wingdings', which i have in my embed section and
in my style declaration. However, I still can't see it in Flex. Guess
I'll have to fiddle some more.