Is there a way to query the name of an effect in the collection of effects for an event?
In the code below, I go through the list of effects for each event. The code "effect.Name" is where I wanted to get the name of the plugin (e.g., "Sonic Foundry Swirl"). I've also tried "effect.Label".
Any ideas?
In the code below, I go through the list of effects for each event. The code "effect.Name" is where I wanted to get the name of the plugin (e.g., "Sonic Foundry Swirl"). I've also tried "effect.Label".
Any ideas?
var videoEvent = VideoEvent(evnt);
var i;
for (i=videoEvent.Effects.Count - 1; i >= 0; i--) {
var effect = videoEvent.Effects[i];
if (effect.Name == plugIn.Name) {
evnt.Selected = true; // Select the event
}
}