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

flash on 2009-5-6

Get Adobe Flash player
by gabriel_laet 06 May 2009
    Embed
package {
    import flash.display.Sprite;
    import flash.events.Event;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            
                    
            addEventListener(Event.ENTER_FRAME, render);
        }
        
        public function render(e:Event):void
        {
            graphics.lineStyle(Math.random()*3, Math.random()*0xFF0000);
            graphics.curveTo(Math.random()*stage.stageWidth, Math.random()*stage.stageHeight, Math.random()*stage.stageWidth, Math.random()*stage.stageHeight);
        }
    }
}