Have a problem with child movie clip control
Hi
have child animation in Movie Clip on main stage
but can not control it
this.MovClip.stop();
or
this.MovClip.gotoAndPlay();
does not work
Hi
have child animation in Movie Clip on main stage
but can not control it
this.MovClip.stop();
or
this.MovClip.gotoAndPlay();
does not work
I take it that you are doing HTML5 Canvas. If you have a line like this:
this.MovClip.stop();
as the first thing in the first frame that MovClip exists, the script runs before MovClip has appeared. It would simpler to go into MovClip and put:
this.stop();
in its first frame. Or, put the this.MovClip.stop(); into the second frame that it exists in the main timeline.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.