actionscript 3 - as3 Font size for drop down list inside ComboBox -


enter image description here

how reduce font size of drop down list in order fit contents.

thanks,

your title says combobox write-up says dropdownlist provided examples both:

<s:dropdownlist fontsize="8"/> <s:combobox fontsize="8"/> 

edit: added below based on new info:

var dropdown:dropdownlist = new dropdownlist(); dropdown.setstyle("fontsize", "8"); 

Comments