Question
simple question; how do I move from frame to frame with buttons on an Animate CC HTML5 canvas
I can't make a button component work; I dragged it from the components list directly to the stage, converted it to symbol, gave it an instance name and gave it the "Click to Go to Frame and Stop" snippet.
I've tried variations of...
this.button_1.addEventListener("click", firstButton.bind(this));
function firstButton()
{
this.gotoAndStop(2);
}
what am I missing?
