Hi,
Anybody please let me know how to access the properties of the movieclips which are created during runtime.
Ex:
var dotCount:uint = 0;
for(var i:uint = 0; i<=10;i++)
{
var circle:MovieClip = new MovieClip();
circle.graphics.beginFill(0x000000);
circle.graphics.drawCircle(xPos, yPos, 3);
circle.graphics.endFill();
circle.name = “circle”+dotCount;
chart_mc.addChild(circle);
dotCount++;
}
//How can I access a property (say .alpha or any other property) of “circle6”??