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!

Continuous scrolling text 1

Status
Not open for further replies.

lizhach

Instructor
Oct 24, 2002
2
CA
How do you create a continuous vertical scrolling text without having to click or scroll anything. And, is it possible to have an imported text file instead of a tween?

Thanks a bunch !
 
Moving a movie clip (under a mask), which holds a dynamic textfield (with the text read from a text file), in which the font is embedded, otherwise it won't be visible. Regards,

oldman3.gif
 
Or just increment the scroll value of the textfield with the its instance name set to 'textBox'

MX only - same thing works in Flash 5 if you rewrite the handler as an onClipEvent(enterFrame)

this.onEnterFrame = function() {
textBox.scroll++;
};
 
Do you think I could find a tutorial for this on the Net? If so, what would I look for? I know a bit of Flash but I would need guidance for this.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top