var speedX:Number = 1; onEnterFrame = moveCircle; function moveCircle():Void { circleMC._x += speedX if (speedX < 6) { speedX++ } }