How to create a text scroll flash for your news or your movies

Today the first of the new year I want to explain something to me very useful: 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 up and down a short, or any shape you want your custom buttons.

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

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 do not feel like you can always download it.

Download

I hope I was helpful please commentini. 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)