# Random Moves .X MCs

**URL:** https://forum.kirupa.com/t/random-moves-x-mcs/199704
**Category:** flash
**Created:** [September 5, 2006, 11:39am UTC](https://forum.kirupa.com/t/random-moves-x-mcs/199704 "2006-09-05T11:39:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![gllanci](https://avatars.discourse-cdn.com/v4/letter/g/8c91f0/32.png) [@gllanci](https://forum.kirupa.com/u/gllanci)
#### Post date: [September 5, 2006, 11:39am UTC](https://forum.kirupa.com/t/random-moves-x-mcs/199704/1 "2006-09-05T11:39:46Z")

</div>

Hi

Im using this to move randomly my objects, but it moves very fast by 35 fps!!

```auto
onClipEvent (load) {
 //this sets the initial x position of our clip
 this._x = 10;
}
onClipEvent (enterFrame) {
 //this makes the clip go crazy
 this._alpha = random(100);
 this._x = random(500);
 this._x += 5;
}

```

Can some bosy help me making a coupple of MC to move randomly nice and Slow.

Thnx a lot.  
Enjoy
