I have implemented the “Sliding Menu” from the tutorials.
http://www.kirupa.com/developer/flash8/slidingMenu.htm
I am trying to create links within the content MC / holder MC that allows the user to jump to the details of the project I am displaying. I have tried creating buttons within the content MC and also making the content MC an actual button. I have tried to use the following code referencing scenes and labels with no success:
Ex 1.
on (release) {
gotoAndPlay("Scene 3",1);
}
Ex 2.
on (release) {
gotoAndPlay('Project1Details');
}