It seems like the latest changes to TweenJS (or possibly Ticker) have caused some issues with all tweens. Tweens started on document load run fine, but the time that Tweens use seems to be when the document loads, and not when the tween starts - so if the tween kicks off 1 second after document load, it will jump to 1 second into the tween immediately.
This example attached shows the issue with the latest NEXT source as of Nov 20, 2014
createjs.Tween.get({right:0}).to({right: 500}, 3000).on("change", function(e) {
console.log(e.target.target.right); // Outputs the
});
It seems like the latest changes to TweenJS (or possibly Ticker) have caused some issues with all tweens. Tweens started on document load run fine, but the time that Tweens use seems to be when the document loads, and not when the tween starts - so if the tween kicks off 1 second after document load, it will jump to 1 second into the tween immediately.
This example attached shows the issue with the latest NEXT source as of Nov 20, 2014