Trying to access another MovieClip on frame 2 of a movieclip on main timeline
Trying to access another MovieClip on frame 2 of a movieclip on main timeline I am working with nesting of movieclips. I am trying to access another movieclip in frame 2 of main movieclip on stage. => test2 movieclip is present on frame2 of test movieclip. I am getting this error because of accessing test2 variable.. TypeError: Error #1009: Cannot access a property or method of a null object reference. at Untitled_fla::MainTimeline/Access() at Untitled_fla::MainTimeline/Untitled_fla::frame1() Any alternate method to access test2 movieclip on frame2 of main movieclip? My Code is : var test1:MovieClip; var test2:MovieClip; test.stop(); function Start(){ //test.addChild(test1); //Test1 = new test1(); //Test2 = new test2(); trace(test.numChildren); test1 = MovieClip(test.getChildByName("test1")); test.gotoAndStop(2); test2 = MovieClip(test.getChildByName("test2")); } function Access(color:String){ var r:RegExp=new RegExp(/#/);...