Dan, this is the expression I’m using (yours from your website). How would I add on to the end of it with the expression you replied with (result…)?
Thanks.
segMin = 1.0; //minimum segment duration
segMax = 3.5; //maximum segment duration
minVal = [0.1*thisComp.width, 0.1*thisComp.height];
maxVal = [0.9*thisComp.width, 0.9*thisComp.height];
end = 0;
j = 0;
while ( time >= end){
j += 1;
seedRandom(j,true);
start = end;
end += random(segMin,segMax);
}
endVal = random(minVal,maxVal);
seedRandom(j-1,true);
dummy=random();
startVal = random(minVal,maxVal);
ease(time,start,end,startVal,endVal);
Julius Caesar and the Roman Empire couldn’t conquer the blue sky.