Skip to content

Instantly share code, notes, and snippets.

@akio0911
Created May 23, 2009 17:59
Show Gist options
  • Save akio0911/116696 to your computer and use it in GitHub Desktop.
Save akio0911/116696 to your computer and use it in GitHub Desktop.
var format:TextFormat = new TextFormat();
format.bold = true;
format.italic = false;
format.size = 40;
format.underline = true;
format.font = "_等幅";
var text:TextField = new TextField();
text.width = 200;
text.height = 200;
// text.autoSize = TextFieldAutoSize.LEFT;
text.selectable = false;
text.setTextFormat(format);
text.background = true;
text.backgroundColor = 0xFFFFFF;
text.border = false;
// text.borderColor = 0x000000;
text.textColor = 0xFF0000;
text.multiline = true;
// text.numLines = 5;
text.wordWrap = true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment