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

SCCP第4回課題-2

Get Adobe Flash player
by s1190133 17 Jun 2011
    Embed
/**
 * Copyright s1190133 ( http://wonderfl.net/user/s1190133 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/ozHf
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            
            for(var i:int =1;i<=100;i++){
            graphics.lineStyle(2,Math.random()*0xFFFFFF,1);
            graphics.drawCircle(Math.random()*500,Math.random()*500,Math.random()*50+1);
            }
            
        }
    }
}