underline text in flash
underline text in flash
- Started
- Last post
- 3 Responses
- WildPony
this is BS...how do I underline text in flash?
- UndoUndo0
set the text field property to underline or use a css style with an underline attribute
- UndoUndo0
dynamically
Example
The following example creates a text field and sets the text style to underline.this.createTextField("mytext",1...
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = true;var myformat:TextFormat = new TextFormat();
myformat.underline = true;
mytext.text = "this is my first test field object text";
mytext.setTextFormat(myformat);
- WildPony0
What if I'm just doing simple static text? I cant find any underline option in the properties