I would like to high-lite part of my text, but i don't find where to do it, other features like under line, etc.
Thank you for your help.
Printable View
I would like to high-lite part of my text, but i don't find where to do it, other features like under line, etc.
Thank you for your help.
I don't think it's possible from inside Flash, but with actionscript it is ;)
Make a Dynamic Text field, give its Instance Name, any name you want (not variable name), for instance, let's call it my_txt. Then, on your Frame, write this:
Actionscript Code:my_txt.background = true;
my_txt.backgroundColor = "0xFF0000";
That will color the whole dynamic text though. Not sure if only parts can be colored without using complex codes or multiple text fields!