-
Posts
208 -
Joined
-
Last visited
-
Days Won
2
Community Answers
-
Oliver16Years's post in staggerTo within Animate CC was marked as the answer
I think the stagger argument is missing from Your code:
TweenMax.staggerTo( targets:Array, duration:Number, vars:Object, stagger:Number, onCompleteAll:Function, onCompleteAllParams:Array, onCompleteAllScope:* ) : Array https://greensock.com/docs/#/HTML5/Animation/TweenMax/staggerTo/
Try something like this:
tl.staggerTo([root.headline, root.tagline, root.logo, root.cta], 1, {alpha: 1, ease: Back.easeOut}, 0.1 ); -
Oliver16Years's post in Child Movie Clip and Timeline was marked as the answer
Sorry I don't have Animate, but as I remember all nested elements are accessible via dot syntax.
The elements ( MovieClips ) are in tree hierarchy. You can address them top-down from the stage. EaselJS calling it "Display list" as I know.
I am guessing now:
stage.myMovieClip.myCloseButton.addEvenlistener(....
Here is the official page of EaselJS which is the graphics engine of Animate's canvas format:
http://www.createjs.com/easeljs
Animate pros correct me please!