As3 flash错误“无法访问null对象引用的属性或方法”

时间:2015-11-23 10:53:11

标签: actionscript-3 flash

我在测试电影时遇到了这个错误

TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at ACTUALPROJECT_fla::MainTimeline/youLose()[ACTUALPROJECT_fla.MainTimeline::frame3:112]
    at ACTUALPROJECT_fla::MainTimeline/SharkEat()[ACTUALPROJECT_fla.MainTimeline::frame3:87]

这是我的代码

import flash.events.MouseEvent;
import flash.events.Event;
import flash.events.*;
import flash.utils.Timer;

var rectangle:Rectangle = new Rectangle(0,345,600,455);

turtle_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickupObject);
turtle_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
turtle_mc.addEventListener(Event.ENTER_FRAME, handleCollision);
turtle_mc.addEventListener(Event.ENTER_FRAME, handleCollision2);
turtle_mc.addEventListener(Event.ENTER_FRAME, handleCollision4);
turtle_mc.addEventListener(Event.ENTER_FRAME, SharkEat);
turtle_mc.buttonMode = true;
turtle_mc.originalY = turtle_mc.y;
turtle_mc.originalX = turtle_mc.x;

function resetTurtlePosition()
{
    turtle_mc.y = turtle_mc.originalY;
    turtle_mc.x = turtle_mc.originalX;
}

function pickupObject(event:MouseEvent):void
{
    event.target.startDrag(false, rectangle);
}

function dropObject(event:MouseEvent):void
{
    event.target.stopDrag();
}


function handleCollision(e:Event):void
{


    if (plasticBag_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false))
    {

        youLose();

    }
    else
    {

    }
}
function handleCollision2(e:Event):void
{


    if (fishingBoat_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false))
    {

        youLose();

    }
    else
    {

    }
}
function handleCollision4(e:Event):void
{


    if (oilSpillBoat_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false))
    {

        youLose();

    }
    else
    {

    }
}
function SharkEat(e:Event):void
{


    if (shark_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false))
    {

        **youLose();**

    }
    else
    {

    }
}
var nCount:Number = 0;
var myScore:Timer = new Timer(10,nCount);
counter_txt.text = nCount.toString();
myScore.start();
myScore.addEventListener(TimerEvent.TIMER, countdown);
function countdown(e:TimerEvent):void
{
    nCount++;
    counter_txt.text = nCount.toString();

}

function youLose():void
{
    myScore.stop();
    turtle_mc.stopDrag();
    resetTurtlePosition();
    **this.storedtxt = counter_txt.text;**
    gotoAndStop(3,"PlayTheGame");
}

我用星号标记了两行。 我是flash和Action Script-3的新手,任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

重新验证您的代码后,我认为您的错误来自此行:

gotoAndStop(3,"PlayTheGame");

因为EnterFrame对象上的turtle_mc事件即使在转到PlayTheGame场景的第3帧后仍然被触发,这就是为什么你会遇到这个错误因为EnterFrame事件处理程序中使用的某些对象在该框架中不存在。

所以为了避免这种情况,你可以这样做:

//您应该知道可以使用单个处理程序来处理所有冲突

turtle_mc.addEventListener(Event.ENTER_FRAME, handleCollision);

function handleCollision(e:Event):void
{
    if (        
        plasticBag_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false) ||
        fishingBoat_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false) ||
        oilSpillBoat_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false) ||
        shark_mc.hitTestPoint(turtle_mc.x,turtle_mc.y,false))       
    {
        youLose();
    }
    else {}
}

然后在youLose()函数中,您应该在转到其他场景之前删除Event.ENTER_FRAME事件侦听器:

function youLose():void
{
    // ...

    turtle_mc.removeEventListener(Event.ENTER_FRAME, handleCollision);

    gotoAndStop(3, 'PlayTheGame');
}

希望可以提供帮助。