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

グラフィックを描いてみる

public domain
Get Adobe Flash player
by taisukef 08 Jul 2009
// public domain
package {
    import flash.display.*;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var g:Graphics = graphics;
            for (var i:int; i < 256; i++) {
                var c:int = (i << 16) | (i << 8) | i;
                g.beginFill(c);
                g.drawCircle(120 + i, 200, 100 - i / 3); 
            }
        }
    }
}