| STEP 1 |
 (Enlarge) |
- In your FLA, select the library. Right click in the library area and select "New Font..." from the context menu.
|
| STEP 2 |
 (Enlarge) |
- Under "Font Symbol Properties", select the font and style. Be sure to provide a name. Under linkage, check "Export for Actionscript" and "Export in frame 1". Click "OK".
|
| STEP 3 |
 (Enlarge) |
- Where you have created the text field in a movie clip (to hold the text field), be sure to add your-dynamic-text-field-name.embedFonts = true;. This will enable applying alpha (transparency) to the movie clip and have that alpha effect the text field. Be sure to reference the font and size under your usage of new TextFormat(); and attach that to the dynamic text field, i.e. "your-dynamic-text-field-name".
|
| STEP 4 |
 (Enlarge) |
- Finally, to use alpha (transparency) on the text field contained inside of the movie clip, target the movie clip and apply the alpha using a tween. If you have not already, be sure that the following two lines are contained at the top of your FLA actionscript:
import mx.transitions.Tween; import mx.transitions.easing.*;
|