I’m having trouble removing the an event listener as well as the sprite at the same time. I currently get an error:

TypeError: Error #1009: Cannot access a property or method of a null object reference.

And if I comment out removeChild, I have no error but, obviously, the sprite remains on the screen. Any ideas how I can rid myself of that error?

     //Bullet extends Sprite Class
     bullet:Bullet = new Bullet();
     mc.addChild(bullet);
     bullet.addEventListener(Event.ENTER_FRAME, shoot);

     function shoot(e:Event):void {
        var shot:Bullet = e.currentTarget as Bullet;
        //check shot is outside the frame
        if (shot.x < 0 - shot.width || shot.x > stage.stageWidth || shot.y > 525)
        {
            //trying to remove the thing and it's listener
            e.currentTarget.removeEventListener(e.type,arguments.callee);
            e.currentTarget.parent.removeChild(shot);
        }
        else
        {
            shot.setInMotion();
        }
    }
link|improve this question

75% accept rate
don't forget to put in shot.y < 0 - shot.height :) – The_asMan Apr 4 '11 at 21:47
Just a point: in general when adding the event listener, use weak references i.e. addEventListener(Event, shoot, false, 0, true), this allows the components to be garbage collected and acts similar to removing the eventListener – Brian Bishop Apr 5 '11 at 10:53
feedback

3 Answers

up vote 0 down vote accepted

Apart from a missing var before bullet:Bullet, I don't see anything wrong in the example code. You should set a breakpoint right after:

var shot:Bullet = e.currentTarget as Bullet;

And figure out why shot is null. I suspect there is something amiss in a piece of code outside of the little bit you're providing as the example. If the code is working with only the removeChild line commented out, it tells me that e.currentTarget is not null, but that it's also not a reference to an instance of type Bullet (i.e. the "as" cast is returning null).

link|improve this answer
You know, you were correct—I forgot I had left a trace outside the conditional statement from earlier. – toast Apr 5 '11 at 14:40
feedback

You could try with this line instead:

e.currentTarget.removeEventListener(e.type, shoot);
link|improve this answer
arguments.callee is the same thing… it's a lazy man’s way of not having to go back and find which method is being called – toast Apr 4 '11 at 19:45
Do you have any info about the line where this is happening exactly? Where is this code placed? Maybe stage is not available from there. – Jbalsas Apr 4 '11 at 19:48
Or maybe it's the parent, because the bullet is not added to anyone? – Jbalsas Apr 4 '11 at 19:51
It's added to a MovieClip… sorry I was taking lines out of my code to have less junk to wallow through… I just added it – toast Apr 4 '11 at 20:13
What line exactly throws the null reference error? Assuming things == a bad way to do anything so I must ask. Also I would avoid casting a reference every single time the event is called. What happens is this begins to build a cascading stack of references to the original object, all which have to be cleaned up by the GC engine but, if another reference exists to an object (this can be event listeners, other casted references as you have here) then the objects WILL NOT be cleaned up by the GC and this is going to form a memory leak + performance issue. – Ascension Systems Apr 4 '11 at 20:15
show 2 more comments
feedback

Try reversing these lines
Maybe the reference to e.currentTarget is getting lost through the object references

e.currentTarget.removeEventListener(e.type,arguments.callee);
e.currentTarget.parent.removeChild(shot);

to

e.currentTarget.parent.removeChild(shot);
e.currentTarget.removeEventListener(e.type,arguments.callee);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.