the text appears fully opaque, even though the text field's alpha percentage is set to 20%: : Effects « TextField « Flash / Flex / ActionScript






the text appears fully opaque, even though the text field's alpha percentage is set to 20%:

 

package{
  import flash.display.Sprite;
  import flash.text.*;
  public class Main extends Sprite{
    public function Main(){
        var t:TextField = new TextField(  );
        t.text = "Hello world";
        t.alpha = .2;
        addChild(t);
    }
  }
}

        








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.a list of bulleted text