Parent to Child as3

Alright this problem is driving me MAD!!!

So I’m trying to get a child class to access an array from the parent class.

I even told the compiler it’s a Movie Clip and it’s still being mean.

Here’s the code

package as3
{
import flash.display.MovieClip;
import flash.display.Stage;
import flash.events.Event

public class Circle extends MovieClip
{
var xPosArray:Array
var yPosArray:Array
public function Circle()
{
this.addEventListener(Event.ADDED_TO_STAGE,initFunction);

}

public function initFunction(evt:Event)
{

xPosArray = MovieClip(this.parent.parent).xPosArray
yPosArray = MovieClip(this.parent.parent).yPosArray
}
}
}


It returns this:

TypeError: Error #1009: Cannot access a property or method of a null object reference.
at as3::Circle/initFunction()
at flash.display::DisplayObjectContainer/addChild()
at flash.display::Stage/addChild()
at as3::Fdotty()
at as3::Engine()