Hello,
I wrote a script which adds specified effect to event/single video track.
```
var videoEvent = VideoEvent(evnt);
var plugInName = 'proDAD Mercalli Pro';
//var presetName = '100% Black and White';
var fxx = Vegas.VideoFX;
var plugIn = fxx.GetChildByName(plugInName);
var effectx = new Effect(plugIn);
videoEvent.Effects.Add(effectx);
```
How to open Video Event FX window in Vegas Pro 18 automatically after adding specified effect?
I need it do programmatically (in *.js file extension).
Can you help me?
Regards
Marcin