In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

Labo01

Get Adobe Flash player
by b23chris 05 Mar 2009
package {
	import flash.display.*;
	
	public class circle extends Sprite {
	    public function circle():void {
	        for(var i:uint=0; i<50; i++) {
                     var g:Graphics = graphics;
	            g.lineStyle(Math.round(Math.random()*30),Math.round(Math.random()*0xffffff));
		   var radius:Number = Math.round(Math.random()*80);
		   var movX:Number = Math.round(Math.random()*stage.width);
		   var movY:Number = Math.round(Math.random()*stage.height);
		   g.drawCircle(movX,movY,radius);
	    	}
	    }
	}
}