Search Tutorials
Adding the scrollbuttons and nessary triggers. (cont) Step 6: To trigger these Movie Clips when one of the both buttons is pressed or hold down, they need instance names so that the buttons can addres them. You already placed both movieclips in the triggers layerof Movie Clip textMC. Now select scrollUp and give it the same instance name, scrollUp. Select Movie Clip scrollDown and also give it the same instance name, scrollDown. Select the button to scroll up (the top one) and add the following actions:
on (press, dragOver) {
scrollUp.gotoAndPlay(2);
}
on (release, releaseOutside) {
scrollUp.gotoAndStop(1);
}
It should look like this
on (press, dragOver) {
scrollDown.gotoAndPlay(2);
}
on (release, releaseOutside) {
scrollDown.gotoAndStop(1);
}
Click Control - Test Movie to see if the scroll buttons are working
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||
|