I know this is a very simple question and it has a very simple answer. I am having a brain fart and I cannot figure this out to save my life.
I have the following code below. The problem is I am trying to access a certain navMc and I tried navMc* but I am getting an error. I know I can acces it by:
navHolder[“nav_mc” + 3]
But I just want to know if I can access it with navMc?
var navHolder:MovieClip = _root.createEmptyMovieClip("navHolder", 0);
for(var i:Number = 0; i < navLength; i++)
{
var navMc:MovieClip = navHolder.attachMovie("nav_mc", "nav_mc" + i, i);
}