ExtendScript: Is it possible to insert a MultiCam Source -- nested -- into active sequence
I've got a MultiCam item, and I'd like to insert it into an edited sequence with nesting on.
Currently using the following approach:
trackObject=app.project.activeSequence.videoTracks[0];
projectItem=SomeMultiCamFromProject;
someTime=15;
trackObject.insertClip(projectItem, someTime);The button 'insert and overwrite sequences as nests or individual clips' is set to 'nests'
but the projectItem nonetheless arrives as if it were set to "individual clips"
Is there a way to achieve nested .insertClip()?
