Flash QUESTION
Flash QUESTION
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- b34r0
3 ways you can do that -
(1) Set up the movie so that your text fields are preformatted in the style you want. (12pt, Arial, Red - etc)
or
(2) Run a check to apply the style automatically - after the text field has been populated -
if (yourTextField_txt.text != "")
{
// apply TextFormat()
}(3) Set the text field to HTML and use the markup available to format the text.
--------------
If I've missed the point - and you want to know how to do animation with the text field - check out these protoypes.
http://proto.layer51.com/d.aspx?…
http://proto.layer51.com/d.aspx?…
http://proto.layer51.com/d.aspx?…Hope this helps.