AHRRGHH. Masking dynamic text in Flash.
AHRRGHH. Masking dynamic text in Flash.
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- goygoygoy0
If you want to get rid of that prob, you should export the font in your library (by pressing "new font" in the library), you give it a name that you will use as
bananaman = new TextFormat();
bananaman.font = "theName";
bananaman.size = 8;
bananaman.color = 0x405672;
etc...
later :
mc.setTextFormat(bananaman);
that should resolve it.