flash on 2010-4-16

by hacker_3q88gl5n
♥0 | Line 21 | Modified 2010-04-16 10:44:11 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class Index extends Sprite {
        public function Index() {
            
            var circle:DrawCircle = new DrawCircle();
                    
            circle.alpha = 0.5

            circle.x = 465 / 2
            circle.y = 465 / 2
            
            addChild(circle);
            
            
        }
    }
}
import flash.display.Sprite;
class DrawCircle extends Sprite {
        public function DrawCircle() {
        	graphics.lineStyle(1, 0x00FF99, 1);
        	
        	for (var i:int=150; i>=2; i-=3) {
             graphics.drawCircle(0, 0, i);
}

            
    }        
}            

Forked