Jan
2nd
Files under Flash & Actionscript
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.

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

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

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;
}
Sorry, comments for this entry are closed at this time.