How to create a scrolling text in Flash for your news or your movies

Today the first of the new year I want to illustrate a useful thing to me: The scroll text for your flash movies.

scroll Come creare uno scroll text in flash per le vostre news o i vostri filmati


1. Create a 2-button with two arrows to the up and down a short, or whatever form you want your custom buttons.

2. Create a box in the center of dynamic text, call and set multi scrolltext.

3. To the button that should shake up impostategli the following :

onClipEvent (mouseDown) {
if (this.hitTest (_root._xmouse, _root._ymouse)) {
scrolldown = true;
}
}
onClipEvent (mouseUp) {
scrolldown = false;
}
onClipEvent (enterFrame) {
if (scrolldown) {
_root.scrolltext.scroll -= 1;
gotoAndStop (2);
Else {}
gotoAndStop (1);
}
}
onClipEvent (load) {
gotoAndStop (1);
}
4. To the button that should scroll down impostategli the following script:

onClipEvent (mouseDown) {
if (this.hitTest (_root._xmouse, _root._ymouse)) {
scrollup = true;
}
}
onClipEvent (mouseUp) {
scrollup = false;
}
onClipEvent (enterFrame) {
if (scrollup) {
_root.scrolltext.scroll + = 1;
gotoAndStop (2);
Else {}
gotoAndStop (1);
}
}
onClipEvent (load) {
gotoAndStop (1);
}

There you have created the scroll for your movies and your CD media do not forget that Flash is not only the Internet.

Or if you lack the desire you can always download it.

Download

I hope this helps please comment on. icon wink Come creare uno scroll text in flash per le vostre news o i vostri filmati




Similar articles

Comments

Great .. just what I needed .. ;)
thanks .. Great Blog .. RSSato ;)
to prox.

Leave a comment.

(required)

(required)


Comment moderation turned on. Your comment will not appear immediately.