Help with MC visibility

I have asked this before but could never get it to work. This time i am posting entire code but I colored the problem area.

What I am trying to do is capture the name of the button which is clicked and add “hl” to it, which is the name of another movieclip already on stage. This works, colored in green below. Then with that modified name I want to set the visibility of that movieclip, ie popUp0hl, to true. This is not working, colored red below. None of these MCs are created dynamically by the way.


import fl.transitions.Tween;
import fl.transitions.TweenEvent;
import fl.transitions.easing.*;
import flash.events.MouseEvent;
import flash.display.MovieClip;
/////////Populating the text fields.////////////////////////////////////////////
var text1:String = "C:\\Documents and Settings\\All Users>prompt     prompt$G";
txtScreen1.text = text1;
var text2:String = "prompt>cd";
txtScreen2.text = text2;
var text3:String = "C:\\Documents and Settings\\All Users";
txtScreen3.text = text3;
var text4:String = "propmt>dir /s text* \r  Volume in drive C has no label.\r  Volume serial number is 7826-20B6\rFile not found";
txtScreen4.text = text4;
var text5:String = "propmt>dir /s *text* \r  Volume in drive C has no label.\r  Volume serial number is 7826-20B6\rDirectory of C:\\Documents and Settings\\All Users\\Documents\r01/12/2010    11:11 AM           0 New Text Document.txt\r                           1 File(s)          0 bytes";
txtScreen5.text = text5;
var text6:String = "propmt>dir /s /b *text* \rC:\\Documents and Settings\\All Users\\New Text Document.txt";
txtScreen6.text = text6;
 
/////////Configuring popUps to act as buttons, adding event listeners.//////////////
/*for (var i:Number =0; i<7; i++)
{
 MovieClip(popUp+i).addEventListener(MouseEvent.CLICK, handleClick);
}*/
popUp0.buttonMode = true;
popUp0.mouseChildren = false;
popUp0.useHandCursor = true;
popUp0.addEventListener(MouseEvent.CLICK, handleClick);
popUp1.buttonMode = true;
popUp1.mouseChildren = false;
popUp1.useHandCursor = true;
popUp1.addEventListener(MouseEvent.CLICK, handleClick);
popUp2.buttonMode = true;
popUp2.mouseChildren = false;
popUp2.useHandCursor = true;
popUp2.addEventListener(MouseEvent.CLICK, handleClick);
popUp3.buttonMode = true;
popUp3.mouseChildren = false;
popUp3.useHandCursor = true;
popUp3.addEventListener(MouseEvent.CLICK, handleClick);
popUp4.buttonMode = true;
popUp4.mouseChildren = false;
popUp4.useHandCursor = true;
popUp4.addEventListener(MouseEvent.CLICK, handleClick);
popUp5.buttonMode = true;
popUp5.mouseChildren = false;
popUp5.useHandCursor = true;
popUp5.addEventListener(MouseEvent.CLICK, handleClick);
popUp6.buttonMode = true;
popUp6.mouseChildren = false;
popUp6.useHandCursor = true;
popUp6.addEventListener(MouseEvent.CLICK, handleClick);
popUp7.buttonMode = true;
popUp7.mouseChildren = false;
popUp7.useHandCursor = true;
popUp7.addEventListener(MouseEvent.CLICK, handleClick);
popUp0hl.visible = false;
popUp1hl.visible = false;
var lastMovieClip:MovieClip;
var lastOneUp:Array = new Array();
var originalXPosition:Number;
var originalYPosition:Number;
 
/////////////Scale and Tween the popUps////////////////////////////////////////////
function handleClick(evt:MouseEvent):void
{
 temporaryDisable.x = 541;
 
 if (lastOneUp[0] == null)
 {
  //trace(evt.target.name);
  lastOneUp.push(evt.currentTarget);
  originalXPosition = evt.currentTarget.x;
  originalYPosition = evt.currentTarget.y;
  evt.currentTarget.scaleX = evt.target.scaleY = 1.5;
  tweenIn();
 }
 else
 {
  //trace(evt.target.name);
  lastMovieClip = lastOneUp.pop();
  lastMovieClip.scaleX = lastMovieClip.scaleY = 1;
  lastMovieClip.x = originalXPosition;
  lastMovieClip.y = originalYPosition;
  lastMovieClip.addEventListener(MouseEvent.CLICK, handleClick);
 
  lastOneUp.push(evt.currentTarget);
  originalXPosition = evt.currentTarget.x;
  originalYPosition = evt.currentTarget.y;
  evt.currentTarget.scaleX = evt.target.scaleY = 1.5;
 
  tweenIn();
  /*evt.target.scaleX = evt.target.scaleY = 1.5;
  evt.target.x = 98;
  evt.target.y = 200;
  highLight.x = 380;
  highLight.y = 70.4;*/
 }
 
 function tweenIn():void
 {
  evt.currentTarget.removeEventListener(MouseEvent.CLICK, handleClick);
  var xTween:Tween = new Tween(evt.target, "x", Strong.easeOut, evt.currentTarget.x, 100, 1, true);
  var yTween:Tween = new Tween(evt.target, "y", Strong.easeOut, evt.currentTarget.y, 200, 1, true);
  //var scaleXTween:Tween = new Tween(evt.target, "scaleX", Strong.easeOut, evt.currentTarget.scaleX, 1.5, 1, true);
  xTween.addEventListener(TweenEvent.MOTION_FINISH, reenableChoices);
 
 
 
  /*var buttonArray:Array = [popUp0.name, popUp1.name, popUp2.name, popUp3.name, popUp4.name, popUp5.name, popUp6.name, popUp7.name];
  var hiLiteArray:Array = [highLight0, highLight1];
  var btnIndex:Number = buttonArray.indexOf(evt.currentTarget.name)
  hiLiteArray[btnIndex].visible = false;*/
 
  [COLOR=seagreen]var highLight:String = evt.currentTarget.name + "hl";[/COLOR]
[COLOR=seagreen] trace(highLight);//popUp0hl[/COLOR]
  [COLOR=red]this

.visible = true;[/COLOR]

/var highLightTxt:TextField = new TextField();
highLightTxt = TextField(this.getChildByName(“highLight”));
highLightTxt.text = highLight;
highLightTxt.visible = true;
/

function reenableChoices():void
{
temporaryDisable.x = 900;
xTween.removeEventListener(TweenEvent.MOTION_FINISH, reenableChoices);
}
}
}


 
Thanks in advance.
 
MH