-
Add Comps to Another Comp in ExtendScript
My script is creating new comps in a loop. As they are created, I’d like to add them to an existing comp called previewComp. How can I do this?
Thanks in advance for your help,
var theComp = app.project.activeItem;
var previewComp = app.project.items.addComp("Preview Comp", 1280, 720, 1, 120, 23.976);for(i = 0; i < 10; i++)
{
theComp.duplicate();
// Add the newly created comp to another comp called previewComp
}Nate Hanson
Pilothouse Films