-
1. Re: Skip intro not working
Ned Murphy Jul 28, 2011 10:51 AM (in response to ruthgordy)If the following code is what leads to the problem...
btnSkip.addEventListener(MouseEvent.CLICK, goToEnd);
function goToEnd(event:MouseEvent):void
{
gotoAndStop("end");
}
What code is in that "end" frame?
-
2. Re: Skip intro not working
ruthgordy Jul 28, 2011 11:00 AM (in response to Ned Murphy)There is no code in the end frame.
The code you refer to is in frames 1-119 of AS layer. End frame is 120.
-
3. Re: Skip intro not working
ruthgordy Jul 28, 2011 11:27 AM (in response to ruthgordy)Can I throw out another thought to solve this problem?
Can I have the Skip Intro button navigate to a static version of my homepage instead of going to the end of my animated home page?
I have the static version already created and wouldn't it be better when viewer is navigating the site to go back to the static home page if they need to?
thanks
-
4. Re: Skip intro not working
Ned Murphy Jul 28, 2011 11:27 AM (in response to ruthgordy)Where is that gotoAndPlay(1) line located relative to the main timeline? Are you getting any error messages?
-
5. Re: Skip intro not working
Ned Murphy Jul 28, 2011 11:32 AM (in response to ruthgordy)A Skip Intro button will normally take one out of the intro entirely and plant the user in the home page. So if that is not where you are sending them, then it could help avoid the problem you're having... though the problem you are having should not be happening. Something is contradicting the gotoAndStop command (particularly the "Stop" aspect of it). That would normally fall out as some code that is continually cycling and telling the timeline to play.



