Movieclip loading ease effect

I was looking at the flash easing click tutorial

i just have a question , instead of the user clicking on the (mouseDown) i want to let say the movie to load from x=45 and y=200 then goto x=0 and y=0 with the rubber band effect?? can anyone help me here?



onClipEvent (load) {
	_x = 0;
	_y = 0;
	speed = 5;
}

onClipEvent (enterFrame) {
	_x += (endX-_x)/speed;
	_y += (endY-_y)/speed;
}