Tuesday, May 24, 2011

Bascic Flash Tutorial - Simple text scroller


Do you know how to create a flash based text scroller to scroll a few lines of text?
This tutorial will help you to create the text scroller by just following the simple instructions:
Step 1: Create a dynamic textbox.
text_scroller01
 




Step 2: Set the textbox to Multiline, and name the instance as ’scroller’.
text_scroller02

Step 3: Right click on the dynamic text and choose Scrollable.
Step 4: Create 2 arrow key button to scroll up/down.
text_scroller03

Action script 2

Step 5: Place this Actionscript into the button.
Scroll Up
on(release){
scroller.scroll=scroller.scroll-1;
}
Scroll Down
on(release){
scroller.scroll=scroller.scroll+1;
}

4 comments:

aisha said...

I would really like your post ,it would really explain each and every point clearly well thanks for sharing.
1995 Ford Mustang AC Compressor

Admin said...

very very simply,....
thanks nice tutorial.

Anonymous said...

You have really done a great work to share the hidden art of the great man. It is really a nice work by them. Thanks a lot for this
Isuzu FRR Truck Turbo

Alice Wang said...

Very useful!

Post a Comment