components - font change?
components - font change?
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- Hardcore0
Presuming you have an instance of the combobox on stage called 'Combo'. Simply use the FStyleFormat Object (look up the other properties in the AS Help).
// --- Changes from default Arial to Verdana BoldFStyle_fmt = new FStyleFormat()
FStyle_fmt.textFont = "Verdana"
FStyle_fmt.textBold = true
FStyle_fmt.addListener (Combo)
FStyle_fmt.applyChanges();Hope this helps... :)