Oct 31, 2002 #1 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.
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.
Oct 31, 2002 1 #2 wangbar Programmer Jul 23, 2001 1,906 GB this.createTextField('mytext', 1, 0, 0, 100, 100); myText.background = true; myText.backgroundColor = "0x000000"; Upvote 0 Downvote
this.createTextField('mytext', 1, 0, 0, 100, 100); myText.background = true; myText.backgroundColor = "0x000000";
Oct 31, 2002 Thread starter #3 bubu Programmer Mar 3, 2002 463 RO 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. Upvote 0 Downvote
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.
Oct 31, 2002 #4 wangbar Programmer Jul 23, 2001 1,906 GB 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; }; Upvote 0 Downvote
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; };