I'd like to have animations/tweens that run in succession.
For example, say you have a roulette wheel: startspinwheel, slowspinwheel, stopspinwheel, each one starting with the previous one stops.
My attempts at doing so include dot-chaining
this.animate('startspinwheel').animate('slowspinwheel').animate('stopspinwheel');
as well as multiple lines (which could run into a processing problem)
this.animate('startspinwheel');
this.animate('slowspinwheel');
this.animate('stopspinwheel');
what's the best way to achieve this?