-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Newly created MovieClip (defined by AnimateCC script) is unstoppable #779
Comments
Yeah, I am pretty sure this is a bug. I sent a PR regarding it a few days ago, #778 |
We are aware of this bug, and are hoping to have a solution for it in a future release. In the mean time, I believe forcing an update on the parent timeline can resolve this: this.BG_holder=new lib.abui_BackGround();
this.BG_holder.gotoAndStop(0); // Force update
this.BG_holder.title.gotoAndStop(0); |
I don't see what this.BG_holder.title should be here, and there is no 'parent timeline'. |
This is based on your code. Basically, you have to force |
+1 to this. |
That is the hope. This was a change by Adobe, so we are working with them to resolve. Cheers. |
Since AnimateCC publish everything as MovieClip the newly created MovieClips is unstoppable right after the creation, could stop only some time later. (FlashCC published the same objects as Container, and there was no problem to stop them) for example:
and this.BG_holder.title still loops it's timeline. When I click a button which call
We can't use AnimateCC because of this bug.
The text was updated successfully, but these errors were encountered: