flash on 2010-8-11

by yaodayizi
♥0 | Line 12 | Modified 2010-08-11 17:42:08 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            this.graphics.moveTo(100,100);
            this.graphics.lineTo(100,200);
            this.graphics.lineTo(200,100);
            this.graphics.lineTo(200,200);
            trace("xxx");
        }
    }
}