Movie clip inside a movie clip

Could someone please point me towards a tutorial that will show me how to get a movie clip to play inside a movie clip? I want the user to press a button for more information and when that button is pressed the additional movie clip starts up.

Much Thanks,
Sara

Bascially, you have loaded in a moive clip and when the user click more info you want another moive clip loaded in a sperate area of the previous clip?

Yup. Movieclip1 has inside it Movieclip2. When Mr. Smith clicks the More Info button that is inside MovieClip1 - I want Movieclip2 to begin playing.

can’t you use the with() function?

on your more info button:
on(release){
with(MovieClip2){
gotoAndPlay(1);
}
}

don’t see why this wouldn’t work