flash on 2012-6-29

by sebastienk
♥0 | Line 30 | Modified 2012-06-29 07:41:47 | MIT License
play

ActionScript3 source code

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

package {
    import flash.events.Event;
    import flash.display.Sprite;
    public class FlashTest extends Sprite 
    {
        private var count:int = 0;
        
        public function FlashTest() 
        {
            // write as3 code here..
            if(stage) init();
            else this.addEventListener(Event.ADDED_TO_STAGE, init);
          
        }
        
        
        public function init():void
        {
             this.addEventListener(Event.ENTER_FRAME, draw);
        }

        public function draw(event:Event):void
        {
            if(count <= 100)
            {
                graphics.beginFill(Math.random() *255);
                graphics.drawCircle(Math.random() * 100, Math.random() * 400, Math.random() * 400);
                graphics.endFill();
            }
            else
            
            {
                count++;
            }

        }

    }
}