Level: Intermediate
Requirements:Flash MX
Language: Flash Actionscript
Introduction
Here you will learn how to create this effect with a few simple steps.
Step 1:
First open new file 200 width x 200 height create dynamic text box give it any instance name you want .. then make sure it's multiline one then choose your dynamic text box the right click then choose scrollable ..
Step 2:
Then put your text in the text box .
Step 3:
Create a new layer then create your up and down arrows then on your up button put this code
on (release) {
sam.scroll-=1;
}
where sam is my textbox instance name
STEP 4
On your down arrow put ...
on (release) {
sam.scroll+=1;
}
... and now you are done easy.