Skip to main content
September 29, 2006
Question

Combo Box - Font on Closed

  • September 29, 2006
  • 1 reply
  • 288 views
Hi
I changed the font using
_global.styles.ComboBox.fontFamily = "AAA";

where ASU is an embedded font

The font displays correctly when the combo box is open but closed it still show the default _sans
Anyone help on changing the display font when closed?

Many thanks
Mark
This topic has been closed for replies.

1 reply

Participating Frequently
September 29, 2006
Try this:

import mx.styles.CSSStyleDeclaration;
_global.styles.ComboBox = new CSSStyleDeclaration();
_global.styles.ComboBox.setStyle("fontFamily","AAA");

Tim