Accessing functions and clips in a loaded swf..thats inside a mc

I have a little issue.
I can access the mcs and such of a loaded SWF by using


loader.content.myMC

but I have put the loader instance inside a movieclip
so i have a for loop
for(blah){
l:Loader = new Loader():
l.load(blah);

c:loaderContainer = new loaderContainer();
c.name = “c”+i;
c.addChild(l);
}
result is c0, c1, c2, etc

then i got

function dosomthing(){
c2.??? i tried loader.content … tried c2.content. nothing… any ideas how to access that loaders content thats inside that specific mc?
}