Using for loops can cause problems if you're not careful, like this thread.  http://greensock.com/forums/topic/14645-for-loop-returning-incorrect-counter-number/   That's why I always show people how to use arrays to do stuff like building timelines. There's an array method called reduce that does a really nice job of reducing a bunch items into a single item, i.e. a bunch of timelines into a single timeline. function makeTls(parentTL) { rects.reduce(function(parent, rect) { var tl
    • Like
    5