# Accessing movieclip properties which are created during runtime

**URL:** https://forum.kirupa.com/t/accessing-movieclip-properties-which-are-created-during-runtime/319942
**Category:** Uncategorized
**Created:** [March 9, 2011, 1:54pm UTC](https://forum.kirupa.com/t/accessing-movieclip-properties-which-are-created-during-runtime/319942 "2011-03-09T13:54:05Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pnsrinivasreddy](https://avatars.discourse-cdn.com/v4/letter/p/f14d63/32.png) [@pnsrinivasreddy](https://forum.kirupa.com/u/pnsrinivasreddy)
#### Post date: [March 9, 2011, 1:54pm UTC](https://forum.kirupa.com/t/accessing-movieclip-properties-which-are-created-during-runtime/319942/1 "2011-03-09T13:54:05Z")

</div>

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”??
