Help As3 get current Label in an Array

Hi everyone and Thank you for viewing this post. I have six movieclip images ( nested in the movieclip “mainInsight”) in an array. I am using event.currentTarget to trigger MouseEvent.CLICK event that reacts to a parallel array. The parallel array, uses current Labels, to go to the frame labels in the main movieclip “mainInsight”. It’s supposed to scale up the image that is clicked, by gouing to a certain label with tween functions, and scale down the others. My current code returns this error:

ArgumentError: Error #2109: Frame label TheCompetition not found in scene Scene 1.
at flash.display::MovieClip/gotoAndStop()
at tweenTestFinalTwo_fla::MainTimeline/clickHandler()

Here is the code:

import flash.events.MouseEvent;
import flash.display.MovieClip;
import flash.display.FrameLabel;
stop();

//tweens
import com.greensock.*;
import com.greensock.easing.*;
import com.greensock.plugins.*; 
import com.greensock.plugins.TweenPlugin;


TweenLite.to(brainFade, 1.5, {scaleX:1, scaleY:1, ease:Expo.easeOut});

///BUTTONS ARRAY
var nvArryLocat:Array=[mainInsight.dog,mainInsight.mikes,mainInsight.snakeOil,mainInsight.indian,mainInsight.women,mainInsight.pig];


var destArray:Array =  mainInsight.currentLabels;//[mainInsight.TheCompetition,"RealEstateMedia", "TheSalesStigma", "HeadHunting", "SmearTactics", "FranChising"];
destArray[0]= "TheCompetition";
destArray[1]= "RealEstateMedia";
destArray[2]= "TheSalesStigma";
destArray[3]= "HeadHunting";
destArray[4]= "SmearTactics";
destArray[5]= "FranChising";




for (var i:int = 0; i < nvArryLocat.length; i++) {
	nvArryLocat*.buttonMode = true;
	nvArryLocat*.addEventListener(MouseEvent.ROLL_OVER,nvArryOver);
	nvArryLocat*.addEventListener(MouseEvent.ROLL_OUT,nvArryOut);
	nvArryLocat*.addEventListener(MouseEvent.CLICK, clickHandler);
}

function nvArryOver(event:MouseEvent):void {
	TweenLite.to(event.currentTarget, .5,{alpha:.5, ease:Expo.easeOut,overwrite:false});		
}
function nvArryOut(event:MouseEvent):void {
	TweenLite.to(event.currentTarget, .5,{alpha:1, ease:Expo.easeOut,overwrite:false});	
}

function clickHandler(event:MouseEvent):void {
	TweenLite.to(event.currentTarget, .5,{x:event.currentTarget.width/mainInsight.width,y:event.currentTarget.height/mainInsight.height, alpha:1,scaleX:1, scaleY:1, ease:Elastic.easeOut, delay:.5});
	for (var i:int = 0; i < nvArryLocat.length; i++) {
		if (event.currentTarget == nvArryLocat*) {
			this.gotoAndStop(destArray*);
			var label:FrameLabel = destArray*;
			//trace("frame " + label.frame + ": " + label.name);
			nvArryLocat*.alpha = 1;
			nvArryLocat*.mouseEnabled=false;
			nvArryLocat*.removeEventListener(MouseEvent.ROLL_OVER,nvArryOver);
			nvArryLocat*.removeEventListener(MouseEvent.ROLL_OUT,nvArryOut);
			nvArryLocat*.removeEventListener(MouseEvent.CLICK,clickHandler);
			//
			if(event.currentTarget==nvArryLocat[0]){
				insightText.gotoAndPlay("The Competition");
				header.gotoAndPlay("headerTwo");
				TweenLite.to(brain, 1, {alpha:0});
			}
			if(event.currentTarget==nvArryLocat[1]){
				insightText.gotoAndPlay("Real Estate Media");
				header.gotoAndPlay("headerThree");
				TweenLite.to(brain, 1, {alpha:0});
			}
			if(event.currentTarget==nvArryLocat[2]){
				insightText.gotoAndPlay("The Sales Stigma");
				header.gotoAndPlay("headerFour");
				TweenLite.to(brain, 1, {alpha:0});
			}
			if(event.currentTarget==nvArryLocat[3]){
				insightText.gotoAndPlay("Headhunting");
				header.gotoAndPlay("headerFive");
				TweenLite.to(brain, 1, {alpha:0});
			}
			if(event.currentTarget==nvArryLocat[4]){
				insightText.gotoAndPlay("Smear Tactics");
				header.gotoAndPlay("headerSix");
				TweenLite.to(brain, 1, {alpha:0});
			}
			
			if(event.currentTarget==nvArryLocat[5]){
				insightText.gotoAndPlay("Franchising");
				header.gotoAndPlay("headerSeven");
				TweenLite.to(brain, 1, {alpha:0});
			}
		} else {
			nvArryLocat*.id=i;
			nvArryLocat*.buttonMode=true;
			nvArryLocat*.mouseChildren=false;
			nvArryLocat*.mouseEnabled=true;
		}
	}
}

My file is too big to attach so I’ve placed it here:

darthrayzor.com/testSites/tweenTestFinalTwo.fla

darthrayzor.com/testSites/tweenTestFinalTwo.swf

I am on a deadline and am out of ideas so if you can help that would be appreciated.

rmcnaugh…:block: