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

Like Tornado とるねーどっぽい

ちょっとショートコーディングっぽく書いてみた
こんな書き方真似しないでね
Get Adobe Flash player
by ton 18 Feb 2009
//ちょっとショートコーディングっぽく書いてみた
//こんな書き方真似しないでね
package {
  import flash.display.Sprite;
  [SWF(backgroundColor=0x000000)]
  public class T extends Sprite{function T(){with(addChild(new N(15))){x=y=232.5;}}}
}

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