onClipEvent (enterFrame) {
this._x = this._x + Math.random() ;
this._y = this._y + Math.random() ;
}
You now have basic random motion, but its not going to do you much good at the moment because the motion is rather on a rather minute level, increasing by less than a pixel in each frame. Lets move on to the next step to correct that.


