flash on 2010-4-20

by Kitosan1986
♥0 | Line 15 | Modified 2010-04-23 02:50:04 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    
    [SWF(backgroundColor="#FFFFFF",width='600',height='600', frameRate=60)]
    public class FeatureSearch extends Sprite {
        public function FeatureSearch() {        		
        		startBt();
           
        }
 		
 		private function startBt():void{
 			var stBt:Sprite = new Sprite();
 			stBt.graphics.drawRect(50,50,100,20);
 			stBt.graphics.beginFill(0);
 			stage.addChild(stBt);
 		
 		}   
    
    }
}