Create the TextField : background « TextField « Flash / Flex / ActionScript






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);
    }
  }
}

        








Related examples in the same category

1.Creating a Background for a Text Field
2.Creating Backgrounds for a TextField