Instructing an external movie clip to play from the main movie

Anyone tell me the easiest way to sort this one?

I have a movie clip that consists of 2 keyframes.

It is loaded onto level1 above my main movie and the first frame is blank (so that it does not come into play until instructed).

The second keyframe is the main part of the loaded movie and this needs to play after receiving instruction from the main movie.

My problem is ‘How do I instruct this to happen??’
I have no knowledge of action script so if anyone could advise or tell me if there is an easier way to do this I would be eternally greatful…

Hi m660,

If I understand you correctly it should be as simple as creating a button or frame action in your main movie and doing the following


Frame
_level1.gotoAndPlay(2);

Button
on(release){
      _level1.gotoAndPlay(2);
}