I am trying to create a flash game which involves a large number of scenes (9 to be exact). The first scene has a loader, then moves to the main menu where you can choose to read the story (go to next scene, named "Pre-Story"), or go strait to the combat (which is a scene named "grendel").
I created a movieclip on the menu frame of the first scene (which btw is named "Opening") and included in it this code:
Quote:
on (release) {
trace("Pre-Story");
gotoAndPlay("Pre-Story", 1);
}
|
The problem is that although I know the movieclip is registering the release (because the trace is passing through) the movie simply wont gotoAndPlay the next scene.
I have tried a number of things, including:
-Replacing gotoAndPlay("Pre-Story", 1); with _root.gotoAndPlay("Pre-Story", 1);
-Changing the name of the scene to "prestory" and also changing the gotoAndPlay respectively (thought the "-" might have been a problem.
-Naming frame 1 of "Pre-Story" and having it point at the name.
None of those remedies worked... So does anyone have any suggestions?
I have uploaded the *.fla to:
http://goosey.hatesit.com/beowulf.fla
please someone help me asap I need to get this game done in a week for an english project