Search tutorials
Button actions
Now on to the buttons. To start, select the actions for the up button. Then type the code:
on (press) {
tellTarget(_root.scrollUP) {
play();
}
}
on (release) {
tellTarget(_root.scrollUP) {
stop();
}
}
For the down button, these are the actions:
on (press) {
tellTarget(_root.scrollDN) {
play();
}
}
on (release) {
tellTarget(_root.scrollDN) {
stop();
}
}
Explanation of Code
This code, for both of the buttons, basically calls the movie clips on the stage, by the names that you have given them, to play, and stop, on the commands of the user. When the user clicks on the button, the code tells whichever movie clip to begin to play. That is where the code for the scroll property is stored, making the text move.
| » Level Intermediate |
|
Added: 2001-12-18 Rating: 7 Votes: 120 |
| » Author |
| Matt is just starting out in the internet world. He operates a website for his paintball team, and has plans to become a computer engineer in the future. |
| » Download |
| Download the files used in this tutorial. |
| Download (41 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!