Files
china-dictatorship/hello-world/a/ActionScript flashmx.as
Ciro Santilli 3e40ac19d9 hello-world
2021-03-24 00:00:01 +00:00

13 lines
294 B
ActionScript

_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);