Answered
Close a comp panel from Timeline Panels by a script
I would like a function that can close all other comps but the active one from the timeline pannel.
I would like a function that can close all other comps but the active one from the timeline pannel.
var activeComp = app.project.activeItem;
do {
app.executeCommand(4);
} while(app.project.activeItem != null && app.project.activeItem instanceof CompItem);
activeComp.openInViewer();source:
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.