Make whole TextField italic : Effects « TextField « Flash / Flex / ActionScript






Make whole TextField italic

 

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.italic = true;
        tfStyle.size = 12;
        var tContent:TextField = new TextField();
        tContent.setTextFormat(tfStyle);
        addChild(tContent);

    }
  }
}

        








Related examples in the same category

1.Applying Advanced Anti-Aliasing
2.Set Text box grid fit type to pixel
3.ClickableText
4.Rasterizing, then dissolving a TextField
5.the text appears fully opaque, even though the text field's alpha percentage is set to 20%:
6.a list of bulleted text