0


フラッシュ シュート em アップ ゲーム チュートリアルの作業を開始し、それを終了しまし
た。 swf(Game swf)ですが、ボタンを押すと次のエラーが発生します。

TypeError: Error #1009: Cannot access a property or method of a null object reference.
 -at com.senocular.utils::KeyObject/construct()
 -at com.senocular.utils::KeyObject()
 -at com.actionscript.Ergasia::Ship()
 -at com.actionscript.Ergasia::Engine()





public function Engine() : void {
    if(stage) {
        initialize();
    } else {
        addEventListener(Event.ADDED_TO_STAGE,initialize);
    }
} 

    private function initialize(e:Event = null):void {
        removeEventListener(Event.ADDED_TO_STAGE,initialize);
        //  here goes the code that's currently in Engine constructor
    }

編集: これを解決してくれた Viper に感謝します!

4

1 に答える 1