Applying Alpha Transparency to the System Font in Flash 9
Tuesday, April 15th, 2008If you have tried applying an alpha transparency fade to the ‘_sans’ system font in Flash 9 you’ll know that it doesn’t work. The fix is to apply a filter to the textfield first:
myTextField.filters = [new BlurFilter(0,0,0)];
myTextField.alpha = 0.5;
