Answered
EXTENDSCRIPT Premiere Pro QE API find the selected track
I want to add a video effect to the selected clip.
var selectedClips = app.project.activeSequence.getSelection();
var clip = selectedClips [0];
var nodeid = clip.nodeId;
// USING THE Adobe Premiere Pro QE API to attach a effect to my selectedclip
var qeClip = qe.project.getActiveSequence().getVideoTrackAt(0).getItemAt(0);
QUESTION:
How can i find my clip in QE API ? i can walk all tacks and examen all clips.. but cant find any unique ID or something to compare it with my selected clip? i'am looking for a nodeid or somethings that unique for the clip..
Please help will be appreciated.