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

frocessing test

Get Adobe Flash player
by itkr 08 Jun 2011
/**
 * Copyright itkr ( http://wonderfl.net/user/itkr )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/tgpX
 */

package  {
    
    import frocessing.display.F5MovieClip2DBmp;
    
    public class Main extends F5MovieClip2DBmp{
        public function draw():void{
            noStroke();
            for(var i:int=0;i<30;i++){
                fill(0x3366ff * i);
                circle(mouseX+random(30),mouseY+random(30),1.5*random(5));
            }
        }
    }
}