Just learning need help

I was playing around with the code below and I have a question:

onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x += 5;
if (this._x>=400) {
this._x -= 5;
}
}
}
When I pree the right key it moves to the right. Then i put the if statement that when it hits 400 I wanted the key right to change the direction. Also i seta variable speed =0, How could I use that(speed) to change how fast it moves.