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

静止画作品1

Get Adobe Flash player
by ym054 19 Oct 2010
/**
 * Copyright ym054 ( http://wonderfl.net/user/ym054 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/fLVY
 */

// forked from shmdmoto's 半透明な円を敷き詰める
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 円を敷き詰める
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            var i:int, j:int;
            ellipseMode(CORNER);
            colorMode(HSB, 10,100,100,100);
            noStroke();
            for( i = 0 ; i <= 8 ; i++ ) {
                for( j = 0 ; j <= 8 ; j++ ) {
                   fill( random(10), 100, 100,40);
                    rect(50 * j, 50 * i, 70, 70);
                }
            }

        }
    }
}