Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DYNAMIC TEXTBOX BACKGROUND 1

Status
Not open for further replies.

bubu

Programmer
Mar 3, 2002
463
RO
I have a dynamic textbox that loads data from an xml file.
The background of my flash movie is black.

The textbox has a white background ... how can i change it to black?

Regards,
Dragos.


 
this.createTextField('mytext', 1, 0, 0, 100, 100);
myText.background = true;
myText.backgroundColor = "0x000000";
 
Found it in the book :)
Thanks a lot anyway!!!

Wangbar plese help me : How can i scroll that text from the box continuosly??? Regards,
Dragos.


 
output = "a not-so-long piece of scrolling text as an example ";
//
this.createTextField('newText', 1, 0, 0, 200, 20);
//
this.onEnterFrame = function() {
newText.text = output;
endString = output.slice(0, 1);
startString = output.slice(1);
output = startString+endString;
};
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top