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

備品その1

Get Adobe Flash player
by Nowloading_ 02 May 2011
    Embed
/**
 * Copyright Nowloading_ ( http://wonderfl.net/user/Nowloading_ )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/ydQU
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            graphics.lineStyle(3,0x666666);
            graphics.beginFill(0xcccccc);
            graphics.drawRect(10,10,240,160);
            graphics.endFill();
            
            graphics.beginFill(0xffffff);
            graphics.lineStyle(2,333333);
            for(var i:int=0;i<4;i++){
                for(var j:int=0; j<3;j++){
                    graphics.drawRect(20+i*60,20+j*50,40,40);
                }
            }
            graphics.endFill();
        }
    }
}