Hello everyone at GSAP forum.
I appreciate any help with my problem I've been solving some time. There are few things I can't understand.
This is my problem:
Because I need to use some Tweens or Timelines repeatedly I decided to create functions with these Tweens/Timelines. These functions are appended to Timeline by .call() or .add() (both doesn't works) like this:
var myTimeline = new TimelineMax()
.add(down)
.call(up)
.add(TweenMax.to("box3", 1, {autoAlpha:0.2, scale:0.8, ease: Back.easeOut} ))
----------
function down() {