Smooth scrolling of text

Hi

please help me to make this a more smooth scrolling with actionscript.
text will be loaded dynamically. (not static)


onClipEvent ( enterFrame ) { // this is Button movieClip
if (lPressed) {
this._parent.txt.scroll += 1;

   myTimer = 1;
  while (myTimer < 50000){
	myTimer ++;  
  }

}
}


on (rollOver) { // // these are up and down buttons
lPressed = true;
}
on (rollOut) {
lPressed = false;
}