Create actionscript_flashmx

This commit is contained in:
David
2015-08-26 18:30:09 -07:00
parent 27c59a0c4b
commit aecd22806a

12
a/actionscript_flashmx Normal file
View File

@@ -0,0 +1,12 @@
_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);