views:

25

answers:

1

I have the following code:

var tf:TextFormat = new TextFormat();
tf.font = "arial";

aRButton.textField.antiAliasType = "advanced";
aRButton.setStyle("textFormat", tf);
aRButton.setStyle("embedFonts", true);

When i run this i get antialias on my radiobutton but the Swedish characters å, ä and ö disappears. Is there a way to manually embed these characters?

A: 

I suggest to create a .css file by Flex Style Explorer and insert it into the code

Franky