如何使用Extendscript语言冻结After Effects中的图层?

时间:2018-09-06 05:09:31

标签: adobe extendscript after-effects

我已经在数组中包含了一些成分。

    x = *is an item inside an array* .. 
    y = 1 ; // just one layer in this comp.

    myLayer = app.project.item(x).layer(y)

我需要的是应用命令来冻结此层... 搜索了很多地方,但仍然找不到它...

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您需要为相关图层添加时间重映射:

myLayer= app.project.item(x).layer(y);
myLayer.timeRemapEnabled = true;
timeRemap = mylayer.property("Time Remap");
timeRemap.setValueAtTime(theTime , theValue); // or is it (theValue, theTime)?

时间重映射是AE中Layer对象的属性。