Code: Select all
startSpeed = 10+Math.random()*80;
var easeOut = new KeyframeEase(startSpeed, 100);
var easeIn = new KeyframeEase(4000,0.1);
//create the keyframes and ease them
theEllipse.property("Size").setValueAtTime(startTime,[4440,4440]);
theEllipse.property("Size").setTemporalEaseAtKey(1, [easeIn, easeIn], [easeOut, easeOut]);

there's no ease in, and the ease out has been applied to only one dimension (although the influence has been applied to both). Bug, or am I doing something wrong?