Need text to scroll upwards not downwards

Hi,

I have not touch flash script in years…so was ask to do auto scroll text, and I went around some forums and got this script (attached door.fla). However, the text is scrolling downwards, and I want it to scroll upwards. Anyways to adjust the _y of it? Thanks.

The script is as below:

onClipEvent (load) {
bottom = 0;
top = 800-_height;
}
onClipEvent (enterFrame) {
_y += 2;
if (_y<bottom) {
_y = top;
}
}