Scroll doesn't stop :(

I wrote this code for scrolling content:

onClipEvent (mouseDown) {
	if (this.hitTest(_root._xmouse, _root._ymouse)) {
		var uppressed = true;
		updateAfterEvent();
	}
}
onClipEvent (enterFrame) {
	if (uppressed) {
		if (count != 125) {
			_parent._parent.news._y -= 5;
			count += 5
		}
	}
	updateAfterEvent();
}
onClipEvent (mouseUp) {
	uppressed = false;
	updateAfterEvent();
}

and for opposite:

onClipEvent (mouseDown) {
	if (this.hitTest(_root._xmouse, _root._ymouse)) {
		var dnpressed = true;
		updateAfterEvent();
	}
}
onClipEvent (enterFrame) {
	if (dnpressed) {
		if (count != 0) {
			_parent._parent.news._y += 5;
			count -= 5
		}
	}
	updateAfterEvent();
}
onClipEvent (mouseUp) {
	dnpressed = false;
	updateAfterEvent();
}

When I scroll down it works and stops when count reaches 125, but when I scroll up it doesn’t stop and scrolling down doesn’t work anymore… Any help?.. :frowning: