I want a click trigger to play my animation from a start-point on the Timeline to a stop-point on the Timeline.
But, instead of playing, it jumps to the stop-point.
I have a label at every second along the Timeline: one, two, three, four, etc.
This code plays fine from any label, with the animation/transition, but all the way to the end of the Timeline:
sym.play('two');
sym.play('three');
sym.play('four');
This code merely jumps to the label, with no animation/transition:
sym.stop('two');
sym.stop('three');
sym.stop('four');
However, this also merely jumps to the stop point -- with no animation/transition at all:
sym.play('two');
sym.stop('four');
How do I get the animation to play (not jump) from, say, label "two" to label "four"?