Scrollbar is very popular in Flash. In this thoroughly explained, detailed flash lesson, I will show you how to create scrollbar using some flash tricks and action script code.
Example: Step 1Create a new Flash Documet, take the Text Tool (T), open the Properties Panel (Ctrl+F3) and set the Dynamic Text.

Step 2Using drag and drop technique, create a "rectangle" in whic you'll add some text. Look at the picture!
Step 3Select the drawn "rectangle" open the Properties Panel (Ctrl+F3) and set the options from the picture below!
Step 4Right click on the created "rectangle" and choose Scrollable.
Step 5Copy a large text from somewhere and paste it in the created "rectangle" (area for text) or type any text in that "rectangle".
Step 6Create two buttons in Flash, which will use for text scrolling.
Step 7Select the "UP" button, open the Action Script Panel (F9) and paste this script:
on (release) {
scrollbar.scroll -= 1;
}
Step 8Then select the "DOWN" button, open again the Action Script Panel (F9) and paste this script:
on (release) {
scrollbar.scroll += 1;
}
Test your Movie (Ctrl+Enter).
We're done!
Download source file (.fla)