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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tweening Dynamic Text

Status
Not open for further replies.

phej

Technical User
Feb 8, 2005
22
US
I am trying to figure out how to tween a dynamic text field. My developer has written a part of the website I'm working on to output a text file and they want me to import the text file (which I can do) and have it scroll (bottom to top) through the contents (names, etc).

I know you can't tween the field, you have to put it in an MC (which I've named 'winners') and tween the MC, but I can't get it to work.

Here's the code I'm using:

myData = new LoadVars();
myData.onLoad = function() {

myHeadline_txt.htmlText = this.headline;
myText_txt.htmlText = this.content;
};

myData.load("/flash/text.txt");

stop();
 
The font I'm using for the dynamic text field is Arial, so no. Although I will try that and remember that for times when I'm using a non-staandard font.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top