a list of bulleted text : Effects « TextField « Flash / Flex / ActionScript






a list of bulleted text

 

package{
  import flash.display.Sprite;
  import flash.text.*;
  public class Main extends Sprite{
    public function Main(){
        var tContent:TextField = new TextField();
        tContent.multiline = true;
        tContent.border = true;
        tContent.wordWrap = true;
        tContent.text = "a\nb\nc\nd";
        var tfFormatter:TextFormat = new TextFormat();
        tfFormatter.bullet = true;
        tContent.setTextFormat(tfFormatter);
        addChild(tContent);

    }
  }
}

        








Related examples in the same category

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