flash on 2011-12-1

by andrewexex886
♥0 | Line 20 | Modified 2011-12-01 12:11:30 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import net.hires.debug.Stats;
    [SWF(width = "960", height = "640", frameRate = "30")]
    public class iOS_Apps_develop_debugger extends Sprite {
        public function iOS_Apps_develop_debugger() {
            init();
        }
        private function init():void{
            var BG:Sprite=new Sprite();
          //  BG.graphics.beginFill(0xEEEEEE,1);
          //  BG.graphics.drawRect(0,0,960,640);
          //  BG.graphics.endFill();
            BG.graphics.lineStyle(1,0,1);
            BG.graphics.moveTo(0,641)
            BG.graphics.lineTo(960,641);
            BG.graphics.lineTo(960,-1);
            BG.graphics.lineTo(-1,-1);
            BG.graphics.lineTo(-1,641);
            this.addChild(BG);
        }

    }
}