Create the TextField : Background : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » Background »

 

Create the TextField


 
package{
  import flash.display.Sprite;
  import flash.text.*;
  public class Main extends Sprite{
    public function Main(){

        var msg:TextField = new TextField(  );
        msg.text = "Hello";
        msg.border = true;
        msg.background = true;
        msg.autoSize = TextFieldAutoSize.LEFT;
        container.addChild(msg);
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo TextField
» Background