Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two class files, car.as and carcontrol.as. carcontrol.as spawns instances of car.as using _root.addChild(), but when i try to remove it i keep getting typeerror 1009

carcontrol.as:

   package {//creating the basic skeleton
import flash.display.MovieClip;
import flash.events.*;
public class carcontrol extends MovieClip {
    private var _root:MovieClip;
    private var spawnChance:int;
    public var anCar:car = new car()
    public function carcontrol() {
        //adding the required listeners
        this.addEventListener(Event.ADDED, beginClass);
        this.addEventListener(Event.ENTER_FRAME, eFrameEvents);
    }
    private function beginClass(e:Event):void {
        _root=MovieClip(root);
    }
    private function eFrameEvents(e:Event):void {
        if(_root.lightState=="red"){
            spawnChance=Math.floor(Math.random()* (25 - 1 + 1) + 1)
            if(spawnChance==1){
                trace("car spawns")
                _root.addChild(anCar)
            }
        }
    }
}
}

the car spawns normally.

car.as:

    package {//creating the basic skeleton
import flash.display.MovieClip;
import flash.events.*;
public class car extends MovieClip {
    public var _root:MovieClip;
    private var spawnChance:int;
    private var existence:int =0;
    private var dead:Boolean = false;
    public function car() {
        //adding the required listeners
        this.addEventListener(Event.ADDED, beginClass);
        this.addEventListener(Event.ADDED_TO_STAGE, startToExist);
        this.addEventListener(Event.ENTER_FRAME, eFrameEvents);
    }
    private function beginClass(e:Event):void {
        _root=MovieClip(root);
    }
    private function eFrameEvents(e:Event):void {
        existence++
        if(existence>60 && dead==false){
            trace("car assplodes")
            dies()
        }
    }
    private function startToExist(e:Event):void{
        this.x = 300
        this.y = 300
    }
    private function dies():void{
            dead=true
            this.parent.removeChild(this);
    }
}
}

Output:

    car spawns
    car spawns
    car assplodes
    car assplodes
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
at car/dies()
at car/eFrameEvents()
    car spawns
    car spawns
    car spawns

I also realised that after the typeerror shows up, it doesnt "assplode" anymore. I dont have script in my main timeline, only var lightState:String = "red" Can anyone help me? Help is much appreciated.

share|improve this question

1 Answer

First thing I would do is run this in the debugger to see what line specifically is causing the error. Though from a cursory read of the code, it would appear the likely cause is this.parent.removeChild(this). This may be a bug somewhere, but if you can simply skip this problem, then I would suggest:

try {
    if (this.parent.contains(this)) {
        this.parent.removeChild(this);
    }
} except (e:Error) {
    trace("Error removing instance " + e.getErrorMessage());
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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