flash on 2011-8-15
♥0 |
Line 10 |
Modified 2011-08-15 21:07:59 |
MIT License
archived:2017-03-20 09:47:16
ActionScript3 source code
/**
* Copyright smart_ant ( http://wonderfl.net/user/smart_ant )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/ajJk
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
this.graphics.beginFill(0xffffff*Math.random());
this.graphics.drawEllipse(0,0,100,100);
this.graphics.endFill();
}
}
}