在 Adobe Extendscript 中编写 Premiere Pro 面板时,我可以导入 MOGRT 文件并使用以下代码设置滑块的值:
var transition = app.project.activeSequence.importMGTFromLibrary("WARATAH TV", "WARATAH TV 2019-20 TRANSITION", (myStartTime - 0.55), 2, 2);
transition.setSelected(true);
var components = transition.getMGTComponent();
components.properties.getParamForDisplayName("Slider Value").setValue(5);
但是,当我尝试在导入后检查/取消选中 MOGRT 中的复选框值时,相同的代码不起作用????
components.properties.getParamForDisplayName("Checkbox Value").setValue(false);
关于为什么或如何更改复选框值的任何想法???