Animate CC HTML5/Canvas how to control a nested MovieClip timeline
Hi,
I have a problem i can't seem to wrap my head around.
I created a Movieclip with several frames and on each frame is another nested movieclip and ocasionally that also contains other movieclips (all with instance names while the mainMc is added via addChild() to the stage).
so "mainMc > subMc > subSubMc"
Now i try to control the timeline of the subMc, respectively the subSubMc
I figuered it would be easy as
mainMc.stop(); or
mainMc.gotoAndStop('label');
works like a charm.
If i try to control the timeline like
mainMc.subMc.stop(); or any timeline command absolutely nothing happens. the MC keeps looping (stage.update(); is ticking);
The console doesn't throw any errors and it works absolutely fine if i try to do any other operations o a nested mc - line alpha, rotation, coordinates etc.
Why the heck can't i control the timeline?
Help please? Anyone?
