AHRRGHH. Masking dynamic text in Flash.
AHRRGHH. Masking dynamic text in Flash.
- Started
- Last post
- 3 Responses
- bananaman
Any solutions to the problem of masking dynamic text in Flash?
Ta.
Will
- autonoma0
Embed the font in said text field.
- 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.
- bananaman0
thanks, I'll try that!