Jan
2nd

Simple Flash Based Text Scroller

Files under Flash & Actionscript | 542 views

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

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;

}


Post a Comment

| 542 views