Continuous Movement Tutorial

Concerning the continuous movement tutorial, i was wondering in the actionscript whether or not there was a way to make it so that the circles are always the same size and move at the same speed and cannot be changed by moving the mouse around.
I read the page on what each line of the actionscript says, but I am not literate enough with it yet to know what I should, or even if it is possible to, change.

Thanks,
Steve

welcome, stephcraw. :wink:

onClipEvent (load) {
speed = 10;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.block)) {
this._x = -1000;
} else {
this._x += speed;
}
}

is that what you wanted? =)

This is exactly what I wanted. Thanks a million :slight_smile:

no problem. :wink: