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

簡単砂嵐

10行で砂嵐を作ったよ><

う、うん・・・なんか・・・ごめん・・・
Get Adobe Flash player
by ton 11 Jul 2010
/*
10行で砂嵐を作ったよ><

う、うん・・・なんか・・・ごめん・・・
*/
package {
  import flash.display.*;
  public class A extends Sprite {
    public function A() {
      var b:BitmapData = new BitmapData(465, 465);
      addChild(new Bitmap(b));
      addEventListener("enterFrame",function():void{b.noise(Math.random()*99,0,255,7,true);});
    }
  }
}