In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

flash on 2011-12-9

Get Adobe Flash player
by yokikun 09 Dec 2011
/**
 * Copyright yokikun ( http://wonderfl.net/user/yokikun )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/sRns
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var s:Sprite = new Sprite();
            // 水色で塗りつぶす
            s.graphics.beginFill( 0x00FFFF, 1 );
            // 半径100の円を描画する
            s.graphics.drawCircle( 233, 233, 100 );
            // ステージに表示する
            addChild( s );
        }
    }
}