Skip to main content
Inspiring
November 22, 2024

Border Disappearance Issue in After Effects 2025 Script Panel

  • November 22, 2024
  • 1 reply
  • 226 views

I wrote a script panel, but there is an issue with the display in After Effects 2025.
When checking and unchecking checkboxes, the border disappears. (the same issue with radio button)

This problem did not occur in version 2024.
Here is the code for testing purposes.

Please save the following text as a JSX file and execute it in After Effects
//-------------------------------------
var testPanel = this instanceof Panel ? this : new Window("palette", "Test", undefined);
var main = testPanel.add("group", undefined, "");
var checkbox = main.add("checkbox", undefined, "Checkbox");
if (testPanel instanceof Window) {
testPanel.center();
testPanel.show();
}

1 reply

Inspiring
April 4, 2025

I saw this line in the 25.2 patch update: 'ScriptUI panels are no longer cropped.' However, after running the script, the UI elements are still being cut off