CLICK HERE TO COPY
Actionscript:
[SWF(width = 800, height=600, frameRate=15)]
var littleTxt:TextField = TextField(addChild(new TextField()));
with (littleTxt){
defaultTextFormat = new TextFormat("_sans", 10);
width = stage.stageWidth-20;
height = stage.stageHeight-20;
multiline = true;
wordWrap = true;
text ="";
textColor = 0x444444;
selectable = false;
x = y = 10;
}
var txt:TextField = TextField(addChild(new [...]