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 2012-7-29

Get Adobe Flash player
by hackerboxes 29 Jul 2012
    Embed
/**
 * Copyright hackerboxes ( http://wonderfl.net/user/hackerboxes )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/uK7O
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            this.graphics.lineStyle(1,Math.random()*65535,1);
            for(var i:int=0;i<100;i++){
                this.graphics.beginFill(Math.random()*65535,0.8);
                this.graphics.drawRect(Math.random()*500,Math.random()*600,20,20);                
            }            
        }
    }
}