Error 1009 issues

Hi guys,

I’m new to the forum, more of a voyeur usually, however i can’t find the solution to my problem, which i think is fairly simple.

I’m trying to navigate from one frame to the next, with an external SWF loading inbetween, i’ve achieved this, however when i navigate back to the initial frame the button seems to have disappeared and i get this message:

TypeError: Error #1009: Cannot access a property or method of a null object reference.
at movietest_fla::MainTimeline/movietest_fla::frame2()

The code i’m using is below:

stop();

var TestRequest:URLRequest = new URLRequest(“test1.swf”);
var TestLoader:Loader = new Loader();

intro_btn.addEventListener(MouseEvent.MOUSE_DOWN, newvid);

function newvid(event:MouseEvent):void {
TestLoader.load(TestRequest);
addChild(TestLoader);

}

TestLoader.addEventListener(Event.REMOVED, goToParent);

function goToParent(event:Event):void {
gotoAndStop(3);
}

Any help would be greatly appreciated

Thanks