visual_Lionheart5D2D
Community Beginner
visual_Lionheart5D2D
Community Beginner
Activity
‎Nov 02, 2020
09:07 AM
1 Upvote
Yes, we've added your feature request: DVAPR-4227323. No, there is no way for you to track it online, but your email address is in the bug; we'll keep you informed of our progress.
... View more
‎Aug 10, 2020
09:51 PM
is this functionality available in any way shape or form in the latest release? (and if it is still only in the QE, can you advise on how to do it?)
... View more
‎Jul 29, 2020
10:40 AM
following up on this thread. is there the ability to move clips in the latest API? slash is there something for trackItem.clone()? thanks
... View more
‎Feb 06, 2018
11:59 AM
Im looking for a solution for moving a clip to another track as well. You can copy paste info from one clip to another now, so maybe you can try out inserting the clip into the correct track and then copying the edit info over? Try out my sample below. Add a video to your bottom layer and cut it up a bit. If anyone has hints on moving a clip from one track to another, that would be nice. var clip1 = app.project.activeSequence.videoTracks[0].clips[0]; app.project.activeSequence.videoTracks[1].insertClip(clip1.projectItem, clip1.start); var clip2 = app.project.activeSequence.videoTracks[1].clips[0]; if (clip1.start.seconds > clip2.end.seconds){ clip2.end = clip1.end; clip2.start = clip1.start; }else{ clip2.start = clip1.start; clip2.end = clip1.end; } clip2.inPoint = clip1.inPoint; clip2.outPoint = clip1.outPoint; clip2.duration = clip1.duration;
... View more