A though one to figure out: Setting the Alpha (transparancy) value for a textfield:


import flash.display.BlendMode;

[...]

textfield.text = 'Some text';
textfield.blendMode = BlendMode.LAYER;
textfield.alpha = 0.5;

You can also add textFormatting if you like…