GitHub_collection_hello-world/a/actionscript_flashmx.as
Richie Bendall ad16f6d78a
Normalize printed text
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-03-30 04:21:52 +13:00

13 lines
294 B
ActionScript
Executable File

_root.createTextField("mytext",1,100,100,300,100);
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = false;
myformat = new TextFormat();
myformat.color = 0xff0000;
myformat.bullet = false;
myformat.underline = true;
mytext.text = "Hello World";
mytext.setTextFormat(myformat);