Referencing dynamically created MovieClips

Hello and sorry for asking what is a horribly naive question, but I’m very new to ActionScript 3 and not really a coder. Any help is greatly appreciated! :hugegrin:

So, if I did something like this:


for (var i:uint=0; i<10; i++)
{
    var image:MovieClip = new MovieClip();
    this.addChild(image);
}

Am I right in thinking that I just dynamically created 10 MovieClips and added them to the stage?

And if that is correct, how do I then reference each of those MovieClips, so that I can do stuff like load images into them and find out how wide they are etcetera?

Many thanks!

Chris