get specific sequence with qe dom, extendscript
Is there a way to get a specific sequence with the qe dom rather than just the active sequence?
var seq = qe.project.getActiveSequence();
Then you will have access to: addTracks()
the problem here is im not trying to get the active sequence
for (var i = 0; i < qe.project.sequences.numSequences; i++) {
var seq = qe.project.sequences[i];
if (seq.sequenceID === newSeqID){
var newSeq = seq;
}
}
This works:
for (var i = 0; i < app.project.sequences.numSequences; i++) {
var seq = app.project.sequences[i];
if (seq.sequenceID === newSeqID){
var newSeq = seq;
}
}
my goal is to get the sequence using qeDOM so I can addTracks specified here:
https://community.adobe.com/t5/premiere-pro/add-a-track-in-a-sequence-extendscript/m-p/11313647?page=2#M285122
I made a seperate post here just in case some one else had the same question they can find it easier let me know if I should take it down 🙂
