flash on 2009-6-29
♥0 |
Line 11 |
Modified 2009-06-29 16:48:45 |
MIT License
archived:2017-03-30 09:50:28
ActionScript3 source code
/**
* Copyright hacker_9p8x8mco ( http://wonderfl.net/user/hacker_9p8x8mco )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/xkON
*/
package {
import flash.display.*;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var myShape:Shape = new Shape();
myShape.graphics.beginFill(0x000000);
myShape.graphics.drawCircle(100, 100, 50);
this.addChild(myShape);
}
}
}