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.