PDA

View Full Version : Why doesn't _level0.gotoAndPlay work for me?



3dron
November 4th, 2002, 10:03 PM
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

lostinbeta
November 4th, 2002, 10:05 PM
erm.... I could be wrong, but isn't level0 _root?

So wouldn't it be _root.gotoAndPlay("main")

??