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

flash on 2009-5-1

Get Adobe Flash player
by adveractive1124 01 May 2009
    Embed
package {
	import flash.display.Sprite;
	public class ExampleApplication extends Sprite {
			public function ExampleApplication() {
				graphics.lineStyle(0.5,1,20);
				for(var i:int=0;i<100;i++) {
					graphics.lineTo(Math.random()*400,Math.random()*400);
				}
			}
	}
}