=) How do I reference a scene on the main timeline from within a movie clip? I can reference a frame on the main timeline from a movie clip by using:
on (release) {
_root.gotoAndPlay(5);
}
But to keep the application organised ive put everything in scenes. I assumed the following would work:
on (release) {
_root.gotoAndPlay(“scene2”, 1);
}
but does not. Can anyone help me out???