flash actionscript:
I have created a movie clip and put a dynamic text box in it that is created using actionscript. The text is loaded dynamically via the htmlText property AND the stylesheet property controls the font and its characteristics. I exported the 'final' version to a swf. When I look at the rendered text, it looks 'pixelly' (a scientific term) and I don't think it is being rendered as antialiased text. I would appreciate help to understand what needs to be done in order to get the text to be rendered antialiased. If there is a source to read about doing this any references would also be greatly appreciated. The following actionscript is used to create the dynamic text field: containerMC.createTextField('NewsText',containerMC.getNextHighestDepth(),10,10,1 80,165); containerMC.NewsText.html = true; containerMC.NewsText.multiline = true; containerMC.NewsText.wordWrap = true; containerMC.NewsText.htmlText = ''; containerMC.NewsText.selectable = false; I am currently using two different fonts as shown below (the css rules): #1: font-size:15; font-family: 'Verdana'; font-weight: bold; color: #000000; text-align: center; #2: font-size:25; font-family: 'Palatino Linotype'; I am using Flash MX 2004 Professional. Thanks in advance for your help!
I would really appreciate some help with this.
I suppose you should have used textFieldName.antiAliasType property
Don't see what you're looking for? Try a search.
|