flash on 2009-10-3

by efishocean
♥0 | Line 11 | Modified 2009-10-03 19:01:00 | MIT License
play

ActionScript3 source code

/**
 * Copyright efishocean ( http://wonderfl.net/user/efishocean )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/uzI7
 */

package {
    import flash.display.Sprite;
    import flash.display.Graphic;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            this.graphics.beginFill(1,0xff00ff);
            this.graphics.drawRect(0,0,100,100);
            this.endFill();
        }
    }
}