I think I know exactly what you mean. If I'm right, your buttons are working, but,... they're working in their own context. In other words, they're going to the correct frame on their own timeline, and you want them to go to the correct frame on the maintimeline. the easiest way of doing this is:
on (press) {
_root.gotoAndPlay (10);
}
It works better than the tell target suggestion because it's version 5 and therefore more likely to be compatable with future versions of Flash. Hope you've fixed it by now anyway.
|