Search tutorials
- Create a dynamic text field and give it an instance name. (adding _txt at the end of the instance name is good practice)
- Add some text
- Shift-Doubleclick on the box in the lower right corner maket the dynamic textbox scrollable.
- Add buttons for up and down scrolling.
- Attach this script to the up button
on(release){
scrollText_txt.scroll -=1;
}
- Attach this script to the down button
on(release){
scrollText_txt.scroll +=1;
} - Test Movie
| » Level Intermediate |
|
Added: 2004-09-08 Rating: 7 Votes: 75 |
| » Author |
| Just tryin' to help |
| » Download |
| Download the files used in this tutorial. |
| Download (4 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!