forked from: flash on 2010-3-12

by yaha forked from flash on 2010-3-12 (diff: 9)
♥0 | Line 14 | Modified 2010-03-12 19:18:35 | MIT License
play

ActionScript3 source code

/**
 * Copyright yaha ( http://wonderfl.net/user/yaha )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/57BR
 */

package {
    import flash.display.Sprite;
    import flash.text.*;
    public class Lesson1 extends Sprite {
        public function Lesson1() {
            // write as3 code here..
            var textField:TextField = new TextField();
            textField.text = "てすとーーー";
            addChild(textField);
            var text:TextField = new TextField();
            text.text = "/rこれは?";
            addChild(text);
        }
    }
}