While developing a Premiere Pro Panel using Adobe Extendscript, I encountered an issue with importing a MOGRT file and setting slider values. The code snippet used for this task is as follows:
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);
However, when attempting to manipulate checkbox values in the imported MOGRT, the same code does not produce the desired results.
components.properties.getParamForDisplayName("Checkbox Value").setValue(false);
Any insights on why this might be happening or suggestions on how to interact with checkboxes within the MOGRT?