forked from: flash on 2010-2-13

by hacker_rs10vazy forked from flash on 2010-2-13 (diff: 17)
♥0 | Line 14 | Modified 2010-02-13 23:04:33 | MIT License
play

ActionScript3 source code

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

package {

  import flash.display.Sprite;
  import flash.text.TextField;
  	import flash.text.TextFieldType;
  
  public class Main extends Sprite {
    public function Main(  ) {
      var field:TextField = new TextField(  );
      
     
     field.type = TextFieldType.INPUT;
      field.autoSize = flash.text.TextFieldAutoSize.LEFT;

      field.text = "text text text text text text text text text text text text text text text text text text text text text text text text text ";

      addChild(field);
    }
  }
}