Salve!

Ho questa azione a 2 freccette x uno slide immagini:

Freccetta sx:

onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
scrollleft = true;
}
}
onClipEvent (mouseUp) {
scrollleft = false;
}
onClipEvent (enterFrame) {
if (scrollleft & _root.lista._x<>150) {
_root.target += 10;
} else if ((Key.isDown(Key.UP) == true)) {
_root.target += 10;
}
}


Freccetta dx:

onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
scrollright = true;
}
}
onClipEvent (mouseUp) {
scrollright = false;
}
onClipEvent (enterFrame) {
if (scrollright) {
_root.target -= 10;
} else if ((Key.isDown(Key.DOWN) == true)) {
_root.target -= 10;
}
}


Questa azione funziona se io clicco sulla freccia, ma se invece vorrei solo passarci su con il mouse quale modifica dovrei fare alla mia azione??