Here's some code illustrating the problem:
var myPaper = Raphael('container', '800', '600');
var circ1 = myPaper.circle(50, 50, 40);
var circ2 = myPaper.circle(150, 50, 40);
var circ3 = myPaper.circle(250, 50, 40);
var circ4 = myPaper.circle(350, 50, 40);
circ1.animate({transform: "T0,100"}, 2000); //works by itself
circ2.animate({transform: "T0,100"}, 2000, function() {
this.attr({fill: "blue"});
}); //works with simple callback
// declare a re-usable animation object
var circDownObject = Raphael.animation({transform: "T0,100"}, 2000);
circ3.animate(circDownObject.delay(1000)); // works with anim object delayed
circ4.animate(circDownObject.delay(2000), function() {
console.log("running the callback?"); // fails, callback doesn't execute!
});
And here's a live fiddle.
I want to avoid using a simple setTimeout to create the delay, because my understanding/experience is that it gets wonky with requestAnimationFrame, which Raphael uses (in modern browsers). I'm actually refactoring some old code to not use setTimeout, so I'd like all the timings to be structured using the native Raphael methods, and callbacks, if at all possible. I should also admit up front I don't really understand rAF. Thanks for any help!