Скорее всего ошибка в том, что переменная в curLayer в 6 строке скрипта не была определена.function applyTimeStretch() { // Get the currently selected layer in the active composition var curComp = app.project.activeItem; var curLayer = null; if (curComp && curComp.selectedLayers.length > 0) { curLayer = curComp.selectedLayers[0]; } else { alert("Please select a layer before running this script."); return; } // Apply the Time Stretch effect to the selected layer var timeStretchEffect = curLayer.Effects.addProperty("Time Stretch"); // Set the Time Stretch effect's speed to 33.333% timeStretchEffect.property("Speed").setValue(33.333);}попробуй так. надеюсь помогло