AntiAliasType.ADVANCED is removed on Textfield

Posted by user576331 
AntiAliasType.ADVANCED is removed on Textfield
May 24, 2011 10:06PM
Hello !

I create a new Textfield with this code :

var tf:TextField = new TextField();
tf.embedFonts = true;
tf.antiAliasType = AntiAliasType.ADVANCED;
tf.multiline = true;
tf.wordWrap = true;
tf.selectable = true;
this.addChild(tf);
tf.defaultTextFormat = myFormat;
tf.htmlText = "<u>some html text</u>";


Then, I applied a text effect :

var myTextEffect:FlashEff2Code = new FlashEff2Code();
this.addChild(myTextEffect);

var textEffect:FETStationPanels = new FETStationPanels();
myTextEffect.hideDelay = 3;

myTextEffect.showTransition = textEffect;
myTextEffect.target = tf;


Before the effect starts, I can see the text with the antiAliasType.ADVANCED applied (looks nice).
But when the effects starts, the anti-alias dissapear and at the end, the text has an antiAliasType.NORMAL (looks bad).

How can I fixe that ?

Thanks for your answer.

YF
Re: AntiAliasType.ADVANCED is removed on Textfield
May 25, 2011 11:00AM
Unfortunately, you won't be able to use advanced anti-alias. Flasheff will always use normal anti-alias for text effects. However, if you will use symbol effects the anti-alias will be the one you set.
Sorry, you do not have permission to post/reply in this forum.