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

ソースの雛形

Get Adobe Flash player
by nabe 28 Dec 2008
package {

    import flash.display.*;
    import flash.events.*;
    import flash.geom.*;

    [SWF(width="465", height="465", backgroundColor="0xAABBCC", frameRate="1")];  
    public class BaseClass extends Sprite {

        private var W_:uint;
        private var H_:uint;

        public function BaseClass () {
        //コンストラクタ。ここから全体の処理が開始する。
        //1.初期化処理の呼び出しを仕込むに留める。
            addEventListener(Event.ADDED_TO_STAGE, init_);
        }

        private function init_ (event_:Event):void {
        //初期化処理。
        //1.用済みのリスナ登録を解除する。
            event_.target.removeEventListener(event_.type, arguments.callee);

        //2.実際の処理を書き足す。
            sample_();
        }

        private function sample_ ():void {
        //サンプル処理。
        //1.画面サイズを取得する。            
            W_ = stage.stageWidth;
            H_ = stage.stageHeight;

        //2.画面中央の位置を求める。
            var x_:uint = W_>>1;
            var y_:uint = H_>>1;

        //3.縦横の長さの短い方を選ぶ。
            var r_:uint = x_ < y_ ? x_ : y_;

        //4.円を描画する。
            graphics.lineStyle(5, 0xDDEEFF);
            graphics.drawCircle(x_, y_, r_);
        }

    }

}