Dynamically created variable names... how to create and reference?

Hey,

I have the following code, and what i am trying to do is run through a loop and create a new movie clip each loop. Since i need to create a new instance name for that movie clip i attach the loop number to the string name. Now how do i reference it later on??

Here is the code…


for (var i=0; i<itemData.length; i++){
lineStyle(2,0x000000,100);
lineTo(w + (wi) , (itemData/ vLabel)vMax);
this.attachMovie(“mcGraphPoint”, “Point”+i);
Point
._x = 250
}

It’s the last line in the code i am referring to. How do i reference a DYNAMICALLY created variable??

G