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


Flash / Flex / ActionScript examples » TextField » Effects »

 

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

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo TextField
» Effects