Often in a timeline sequence I'd like to simply call a function. The best way I've figured out to do this is using a delayedCall like:
myTimelineLite.append(TweenLite.delayedCall(0, myFunction));
but is there a better way? This code works, but seems a little clunky.