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

forked from: fr002

Get Adobe Flash player
by yokozunat 28 Mar 2009
    Embed
// forked from kimucha's fr002
// forked from kimucha's frocessing Base01
package 
{
	import frocessing.display.F5MovieClip2D;
	
	[SWF(backgroundColor="#ffffff", frameRate=20)]
	
	public class Main extends F5MovieClip2D 
	{
		
		public function Main() 
		{
			noStroke();
			colorMode(HSB, 360, 100, 100);
		}
		
		public function draw():void
		{
			clear();
			
			for (var i:uint = 0; i < 232; i++)
			{
				for(var j:int=0; j<20; j++)
                                {
                                    fill(random(113, 61), random(100), random(100, 50));
				    rect(i * 4 + 1, j*20, 2, 2);
                                }
                                trace('hoge');

			}
			
		}
	}
	
}