Actionscript Tennis (edited title)

stolen from bit-101 forums, but it’s pretty much dead there, so ill start it off:

rules:

  1. add one line
  2. change one line

ill start with 5 lines:


for (i=0; i<50; i++) { 	shape = _root.createEmptyMovieClip("shape"+i, i);
	shape.lineStyle(1, 0x000000, 100); shape._x = Math.floor(Math.random())*10+200; shape._y = Math.floor(Math.random())*10+200;
	shape.curveTo(Math.ceil(Math.random()*100), 20, 20, -20);
	shape* = shape;
}

nothing special, but i expect good things.