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: forked from: 普通の時計 - Clock

Get Adobe Flash player
by dontsave 31 Jul 2009
    Embed
// forked from flashinterface's forked from: 普通の時計 - Clock
package {
    import flash.display.Sprite;
    public class ExampleApplication extends Sprite {
        public function ExampleApplication(  ) {
            graphics.lineStyle(100, 0, 1);
            for(var i:int=0;i<50;i++) {
                graphics.lineStyle(0xff0000, 1    );
                graphics.lineTo(Math.random(  ) * 600, Math.random(  ) * 200);
            }
        }
    }
}