# I can't stop this ball !1

**URL:** https://forum.kirupa.com/t/i-cant-stop-this-ball-1/134779
**Category:** Uncategorized
**Created:** [January 21, 2005, 11:24am UTC](https://forum.kirupa.com/t/i-cant-stop-this-ball-1/134779 "2005-01-21T11:24:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![NovemberRain](https://avatars.discourse-cdn.com/v4/letter/n/73ab20/32.png) [@NovemberRain](https://forum.kirupa.com/u/NovemberRain)
#### Post date: [January 21, 2005, 11:24am UTC](https://forum.kirupa.com/t/i-cant-stop-this-ball-1/134779/1 "2005-01-21T11:24:36Z")

</div>

```auto
  MovieClip.prototype.track = function() {
 this.onPress = function() {
  this.onEnterFrame = function() {
   if (this._currentframe != 1) {
	this.stop();
   } else if (this._currentframe == 1) {
	this._x += 5;
   }
  };
 };
};
_root.ball.track();

```
