Font for combobox

How do I change the font for a combobox ?

Thanks in advance :slight_smile:

first you have to make a new styleformat, in there you define the font. here’s an example:


Style = new FStyleFormat();
Style.textFont = "Impact";
Style.addListener(instancenameofcombobox);

with styleformats you can edit more than just the font. you can edit background color, arrow color, etc. I hope this helps you.

Hi 2nd day,

Thank you very very much for your responce. I didn’t know it was so easy.

:slight_smile:

you’re welcome :slight_smile: