vote up 2 vote down star

Using CS4, how do I set the font of a List control? I tried this:

		var myFormat:TextFormat = new TextFormat();
		myFormat.font = config.settings["list font name"];
		myFormat.size = Number(config.settings["list font size"]);
		list.setStyle("textFormat", myFormat);

No dice.

flag

58% accept rate
I have not figured out how to set the font yet, but I did find an excellent example of how to make the colors on alternating rows of the list to vary in color: actionscript.org/forums/showthread.php3?t=188206/… (It was different in AS2 - just needed one line. Now you need one line plus three whole classes.) – Paul Chernoch Jun 26 at 21:13

2 Answers

vote up 0 vote down

You can set styles by instance, class and globally.

Unfortunately setting styles by instance failed on list, but you can use global styles using StyleManager.

Make sure your fonts is embedded first, then try

import fl.managers.StyleManager;

var myFormat:TextFormat = new TextFormat(config.settings["list font name"],config.settings["list font size"]);
StyleManager.setStyle('embedFonts',true);
StyleManager.setStyle('textFormat',myFormat);
link|flag
vote up 0 vote down

This took me a long time to figure out, sadly:
http://help.adobe.com/en_US/AS3LCR/Flash_10.0/fl/controls/SelectableList.html#setRendererStyle()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.