Hi!
I would like to create a ComboBox to select a font for a TextBox. So far so easy. However I would like the Dropdown List to show the different fonts as such, i.e. dropdown list showing 'Arial', 'Times' in their respective fonts!
ActionScript Code:
var besch_font_cb:ComboBox;
besch_font_cb.dataProvider = TextField.getFontList().sort();
is this possible?
Similar to this:
http://blog.flexexamples.com/2008/07...ntrol-in-flex/
Help is appreciated!