I wanted to change the default font throughout my flex app so I simply
embeded the font using @font-face in a .css file and then using the
Application type selector, set its fontFamily to my chosen name like so:
@font-face
{
src: url("../fonts/HelveticaCondensed.ttf");
fontFamily: "HelveticaCnd";
}
Application
{
fontFamily:"HelveticaCnd";
}
Which works pretty well except for on components. For instance my TabBar
defaults to Times for some reason as does a CombBox and ToggleButtonBar. The
drop down elements on the combobox are using the correct font but the main
element is Times.
Any thoughts?
--
--Joel Stransky
stranskydesign.com