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

グラデーション 円

Get Adobe Flash player
by Itikara 31 Jan 2010
    Embed
/**
 * Copyright Itikara ( http://wonderfl.net/user/Itikara )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/oNkl
 */

package {
    import flash.display.Sprite;

    [SWF(width= 600, height= 600)]
    public class Test extends Sprite {
        public function Test() {
        		for (var n:uint=0; n < 256; n++) {
				graphics.beginFill(n*65793);
				graphics.drawCircle(300, 300, 256-n);
				graphics.endFill();
        		}            
        }
    }
}