I have a main menu with five buttons that correlate to the five sections of the website. Each button has the code
on(release) {
gotoAndPlay(#);
}
where # is the frame I want it to go to. On my actions layer I have the stop(); command on the specified frames. Despite this, after about six seconds the website automatically switches to the next section.
I've tried gotoAndStop commands, using the "sectionname" instead of the frame number and moving the stop(); command to later frame in the section. Nothing changes.
What am I missing / doing wrong?
on(release) {
gotoAndPlay(#);
}
where # is the frame I want it to go to. On my actions layer I have the stop(); command on the specified frames. Despite this, after about six seconds the website automatically switches to the next section.
I've tried gotoAndStop commands, using the "sectionname" instead of the frame number and moving the stop(); command to later frame in the section. Nothing changes.
What am I missing / doing wrong?