hey guys,
i need a little help. i’m sure it’s easy to do but i can’t wrap my head around it. i have my site that loads an external txt file. i also have the up/down scroll buttons. but i can only get the button scroll down everytime you click on it. how do i get it so when onRollover it keeps scrolling till it can’t scroll anymore. here’s what i have on the buttons:
upButton: on (press, rollOver) {
if (textField.scroll>1) {
textField.scroll–;
}
}
downButton: on (press, rollOver) {
if (textField.scroll<textField.maxscroll) {
textField.scroll++;
}
}
how can i have it continously scroll on over?
thanks,
tee