Copy link to clipboard
Copied
I have inserted a button that operates on frames 1-24. When clicked it goes to frame 25. Works fine. I have then done the same thing from frame 25-49 and when you click the button it should go to frame 50. This is not occurring. Any ideas why? I have turned off the advanced layers setting. I'm pretty new to this stuff but need to fix it.
Thanks.
It seems to me that your timeline doesn't have enough frames.
When you use gotoAndStop(50) in the HTML5 Canvas document, you're actually advancing the timeline to the 51th frame because in CreateJS timelines start in frame 0.
Can you check this?
Regards,
JC
Copy link to clipboard
Copied
Hi.
Can you show your code?
Regards,
JC
Copy link to clipboard
Copied
  
Copy link to clipboard
Copied
 
Copy link to clipboard
Copied
Thanks.
It seems to me that your timeline doesn't have enough frames.
When you use gotoAndStop(50) in the HTML5 Canvas document, you're actually advancing the timeline to the 51th frame because in CreateJS timelines start in frame 0.
Can you check this?
Regards,
JC
Copy link to clipboard
Copied
Worked, thanks so much!
Copy link to clipboard
Copied
You're welcome!