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: testTOMY

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


// forked from TOMY1982's testTOMY
package  {
    import flash.display.Sprite; 
    
    public class Main extends Sprite  {

        public function Main() {
            // constructor code
            trace(639);
            trace(00123);
            trace(0xFF);
            //R G B
            trace(0xFF00FF)


            graphics.beginFill(0xFF0000,1);
            graphics.drawRoundRect(100,300,300,100,30);
            //胴体graphics.endFill();

            graphics.beginFill(0xFF0000,1);
            graphics.drawEllipse(50,30,100,100);
            //左耳graphics.endFill();
            
            graphics.beginFill(0xFF0000,1);
            graphics.drawEllipse(370,30,100,100);
            //右耳graphics.endFill();

            graphics.beginFill(0xFFFF00,1);
            graphics.drawEllipse(20,50,470,300);
            //輪郭graphics.endFill();            

            graphics.beginFill(0xFF0000,1);
            graphics.drawCircle(100,150,10);
            //左目graphics.endFill();

            graphics.beginFill(0xFF0000,1);
            graphics.drawCircle(400,150,10);
            //右目graphics.endFill();

            graphics.beginFill(0xFF0000,0.5);
            graphics.drawEllipse(50,165,100,50);
            //左頬graphics.endFill();

            graphics.beginFill(0xFF0000,0.5);
            graphics.drawEllipse(350,165,100,50);
            //右頬graphics.endFill();

            graphics.beginFill(0xFFFFF0,1);
            graphics.drawEllipse(100,170,300,140);
            //鼻graphics.endFill();

            graphics.beginFill(0xFF0000,1);
            graphics.drawEllipse(130,200,100,70);
            //左鼻graphics.endFill();

            graphics.beginFill(0xFF0000,1);
            graphics.drawEllipse(270,200,100,70);
            //右鼻graphics.endFill();
           
 
        }
    }
    
}