Hi there,
How can i set the line height of a flash textfield which is created like
function showTextContent(txtContent, x, y, w, h) {
this.createTextField("content_txt", 1, x, y, w, h);
css = new StyleSheet();
css.onLoad = function(bSuccess:Boolean):Void {
if (bSuccess) {
content_txt.embedFonts = true;
content_txt.border = true;
content_txt.html =true;
content_txt.multiline = true;
content_txt.wordWrap = true;
content_txt.styleSheet = css;
content_txt.htmlText = paginator.getPage(0);
}
};
css.load("_style.css");
}
anyone?