Moving on to the down button, right-click and open the Actions panel, and do exactly as we did for the up button, with one small difference: replace the - sign with a + sign.
on (release) {
scrollbox.scroll +=1;
}
This will--you guessed it--reverse the motion and cause it to scroll down instead of up.


