Per @Tim Kurkoski 's suggestion ( https://twitter.com/tkurkoski/status/1574877636031311872 ) I'd like to request the ability to batch modify keyframes through the ExtendScript API, specifically for labels and values. ( Basing off of the existing format for prop.setValuesAtTimes() )
// current
prop.setLabelAtKey(index, color);
prop.setValueAtKey(index, value);
// proposed
prop.setLabelsAtKeys([indexA, indexB, indexC], [colorA, colorB, colorC]]);
prop.setValuesAtKeys([indexA, indexB, indexC], [valueA, valueB, valueC]]);
... View more