Can I call gotoPlay from _level2 for _level0

I have an swf loaded into _level0. On button release I want gotoAndPlay a certain frame label in an swf loaded into an MC named Host on _level0 to.

I have the following:

on (release) {
_level0.host.gotoAndPlay(“Main”, “MainStart”);
unloadMovieNum (2);
}

The unload part looks fine, and I am back to my orginal page. But the page did not jump to ‘MainStart’.

What am I forgetting?

RR

ITs really simple all you need to do is include this simple line of code in your button script:

_level2.play(50);

where 50 would be the frame number or you can substitute the label name!