Return to Snippet

Revision: 4226
at November 8, 2007 16:58 by chrisaiv


Initial Code
var textAreaFormat:TextFormat = new TextFormat();
textAreaFormat.size = 30;
textAreaFormat.italic = true;

var ta:TextArea = new TextArea();
ta.x = 100;
ta.y = 100;
ta.width = 300;
ta.height = 300;
ta.setStyle("textFormat", textAreaFormat);
ta.htmlText = "This is text within a text area";
addChild(ta);

Initial URL


Initial Description
Confusing but here's the rule. TextFields can use stylesheets. TextArea or TextInput need a new TextFormat()

Initial Title
AS3: Adding styles to a TextArea component using new TextFormat()

Initial Tags


Initial Language
ActionScript 3