# Movieclip loading ease effect

**URL:** https://forum.kirupa.com/t/movieclip-loading-ease-effect/283462
**Category:** flash
**Created:** [March 6, 2009, 2:18pm UTC](https://forum.kirupa.com/t/movieclip-loading-ease-effect/283462 "2009-03-06T14:18:40Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pares101](https://avatars.discourse-cdn.com/v4/letter/p/b9e5f3/32.png) [@pares101](https://forum.kirupa.com/u/pares101)
#### Post date: [March 6, 2009, 2:18pm UTC](https://forum.kirupa.com/t/movieclip-loading-ease-effect/283462/1 "2009-03-06T14:18:40Z")

</div>

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?

```auto

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

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

```
