Can you point me in the right direction? dynamic sound on a dynamic movie clip

see post below

I am dynamically creating multiple copies of an instance of the same movie clip. I want to attach to each of these movie clips a different external sound that will play once the user clicks on the given movie clip.

my approach so far:
I’m using an external xml file to determin how many movie clips should be generated. This same file can also store all the locations of my external sound files.

I am using:
[COLOR=Teal]for (var i:Number = 0; i < xmlData.object_count; i++){
var boxContainer_mc:boxContainer = new boxContainer();
addChild(boxContainer_mc);
boxContainer_mc.x = 325 * i; //sets the spacing between movie clips
}[/COLOR]
to use the data from the xml file in order to create the given amount of movie clips (boxContainer_mc).

Here is where I’m not sure how to proceed. I figure in the for loop I should include the code to import the sound with each of the movie clips. Maybe I could some how create a button wrapper around the movie clip and link the sound file to this. I’m not sure if that is even possible and if it is if it would block the clickable animation of the original movie clip. any help would really be appreciated.