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: Like Tornado とるねーどっぽい

ちょっとショートコーディングっぽく書いてみた
こんな書き方真似しないでね
// forked from ton's Like Tornado とるねーどっぽい
//ちょっとショートコーディングっぽく書いてみた
//こんな書き方真似しないでね
package {
  import flash.display.Sprite;
  [SWF(backgroundColor=0x000000)]
  public class T extends Sprite {
    function T(){with(addChild(new N(14))){x=y=stage.stageWidth/2;}}
  }
}

class N extends flash.display.Sprite {
  public function N(n:int):void {
    scaleX=scaleY=1.1;
    graphics.beginFill(Math.random()*0xffffff);
    for(var r:Number=0;r<2*Math.PI;r+=Math.PI/119)
      graphics.drawCircle(50*Math.cos(r),30*Math.sin(r),1);
    if(n>0) addChild(new N(n-1)).y=3;    
    addEventListener("enterFrame",function(e:*){e.target.rotation++;});
  }
}