Targeting dynamically created movie clip?

So I got this little array going on, right? And I’d like to set it up so that you’d loop through the pics by clicking on the dynamically created movie clip “container_mc”. This ain’t working so I’ve resorted to putting an invisible mc over the pics to do this job. I know it has to be possible to target the “container_mc” because that’s its instance name. I’ve tried “this.onPress” and “_level1.container_mc.onPress” and just plain ol’ “_root.container_mc.onPress”, but nothing works. :fight:

Can anyone shed some light on this for me?
Here’s my puny code.

stop();
pics = new Array("01.jpg", "02.jpg", "03.jpg");
_root.count = 0;
createEmptyMovieClip("container_mc", 1);
loadMovie(pics[_root.count], "container_mc");
container_mc._x=200, container_mc._y=60;
////////////////
button_mc.onPress = function() {
	_root.count++;
	if (_root.count>2) {
		_root.count = 0;
	}
	loadMovie(pics[_root.count], "container_mc");
	trace(count);
};