Why doesn't _level0.gotoAndPlay work for me?

I have a an mc on _level0. When you hit the back button it performs the following:

unloadMovienum(10);
tellTarget ("_level0") {
gotoAndPlay(“Main”);
}

This is the only way I can get it to work.

Why can’t I use _level0.gotoAndPlay(“Main”); ? It doesn’t work!

Ron

erm… I could be wrong, but isn’t level0 _root?

So wouldn’t it be _root.gotoAndPlay(“main”)

??