Delay action

How can i amek this animation start not when the clip is loaded but something like 40-50 frames later?

onClipEvent (load) {
easeSpeed = 8;
target_x=70;
}
onClipEvent (enterFrame) {
_x += (target_x-_x)/easeSpeed;
}