Flash / Flex / ActionScript/TextField/size

Материал из Web эксперт
Перейти к: навигация, поиск

Set TextField size

 
package{
  import flash.display.Sprite;
  import flash.text.*;  
  public class Main extends Sprite{
    public function Main(){
        var tfStyle:TextFormat = new TextFormat();
        tfStyle.font = "Verdana";
        tfStyle.bold = true;
        tfStyle.size = 12;
        var tContent:TextField = new TextField();
        tContent.setTextFormat(tfStyle);
        addChild(tContent);
    }
  }
}



The width and height of a text field"s rectangular display region can be set explicitly using the TextField class"s instance variables width and height.

 
package{
  import flash.display.Sprite;
    import flash.text.*;
  public class Main extends Sprite{
    public function Main(){
      var t:TextField = new TextField(  );
      t.width = 200;
      t.height = 50;
      t.border = true;
      t.background = true;
      addChild(t);
    }
  }
}