Question
Change font size of ComboBox dropdown
How do I change the font/font-size of the dropdown in a ComboBox?
I know how to change the edit field but not the dropdown!
var textFormat:TextFormat = new TextFormat();
textFormat.font = "Trebuchet MS";
textFormat.size = 26;
combo.textField.setStyle("textFormat", textFormat);
combo.rowCount = 10;
