Load movie clip

I want to load a movie clip from the movie clip that is nested.

I put this action script but I think I need add something

on (release) {
with (light) {
gotoAndPlay(2);
}
}

The movie clip that I want to load is on the main movie
The place that I am calling that movie clip is from the nested movie clip.

I attached a file.
Thank you very much for your help.

you need to use /


on (release) {
	tellTarget ("/light") {
		gotoAndPlay(2);
	}
}

Ok the / is needed to go back a level to the root level.

stay away from using tell target. You could use this, much less code and dot syntax is much easier believe me


on (release) {
	_root.light.gotoAndPlay(2);
}

in this code you are going back to the root level (main timeline )and saying look for the mc called light and send the playhead to play from frame2:asian: