GitHub_collection_hello-world/a/actionscript_flashmx.as
2018-08-22 01:37:32 -03:00

13 lines
295 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);