
As you can see in the above example I am having trouble with my dynamic text and cutting the top off the first line of letters. here’s my code for the text field.
var column_txt:TextField = new TextField();
column_txt.width = width;
column_txt.height = height - space_for_page;
column_txt.selectable = false
column_txt.mouseWheelEnabled = false
//column_txt.autoSize = "left"
column_txt.multiline = true
column_txt.wordWrap = true
column_txt.styleSheet=css;
column_txt.htmlText = txt
column_txt.antiAliasType = AntiAliasType.ADVANCED;
It’s being styled through a CSS file I have.
Help!
