From aecd22806a600fddb29b88d7962b5ee4260e3f72 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 26 Aug 2015 18:30:09 -0700 Subject: [PATCH] Create actionscript_flashmx --- a/actionscript_flashmx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 a/actionscript_flashmx diff --git a/a/actionscript_flashmx b/a/actionscript_flashmx new file mode 100644 index 00000000..4e08a7a4 --- /dev/null +++ b/a/actionscript_flashmx @@ -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);