so I have a dynamic textbox, with the var as text_Box. For some reason the Dynamic text box has a white background, that I can't remove. Is there a way I can change the color, or make it transparent, so that way the text is only showing? Remeber this is in AS3. Thanks in advanced. Trying to remove the white background, so only text is showing.
assuming text_Box is a TextField object - try adding the following to your code:
text_Box.background = false;