Compiler Error 1061
Hello Everyone,
I am struggling with what I thought was a very easy bit of coding, especially since I am using the code snippets available in Animate. Basically, all I want is for the project to stop at frame 78 then for the user to have to click a "Continue" button for it to then go to fram 82 and play.
I first entered the code for it to stop:
this.stop();
Easy, done, it works.
Then I tried adding the code for a user to click on the instance of Continue_Btn1 for it to then go to frame 82 and play. I even used THEIR code snippet.
this.Continue_Btn1.addEventListener("click", fl_ClickToGoToAndPlayFromFrame_9.bind(this));
function fl_ClickToGoToAndPlayFromFrame_9()
{
this.gotoAndPlay(81);
}
Now the project just plays right through and does not stop. The button works if I click on it in the brief second it appears, but the project no longer stops. What am I doing wrong? Please help!
Thank you!
