Marius Boruch
April 13th, 2008, 11:27 AM
how to write a script for vegas so it could automate apply transition/cross effect/mycustomeffect; any good script web site? thanks in advace
View Full Version : custom script Marius Boruch April 13th, 2008, 11:27 AM how to write a script for vegas so it could automate apply transition/cross effect/mycustomeffect; any good script web site? thanks in advace Edward Troxel April 13th, 2008, 12:12 PM There's lot's of good scripting information on my site (http://www.jetdv.com) Here's some of the basics (MyTrans is a string with the name of the transition, MyPreset is a string with the name of the preset): PlugInNode fx = Vegas.Transitions; PlugInNode plugIn = fx.GetChildByName(MyTrans); Effect effect = new Effect(PlugIn); evnt.FadeIn.Transition = effect; effect.Preset = MyPreset; |