Is there a way to automatically do a fade-in (not crossfade) to all clips on a track? The fade-ins are needed on one track only, not the whole project.
Not sure there is, all I know is that one can do this with audio events in Preferences/Editing, i.e. in milliseconds/ms. (or maybe whatever increments the project grid is setup as?).
I'll let more veteran members give you the real deal on this.
Now, if I want to change the fade offset from 1 second to some other value, how do I open it for editing? I opened it in Notepad and saw a bunch of weird characters? Is this a compiled version?
//Go through the list of Tracks
var trackEnum = new Enumerator(Vegas.Project.Tracks);
while (!trackEnum.atEnd()) {
var track : Track = Track(trackEnum.item());
//Go through the list of Events
var eventEnum = new Enumerator(track.Events);
while (!eventEnum.atEnd()) {
var evnt : TrackEvent = TrackEvent(eventEnum.item());
if (evnt.Selected) {
evnt.FadeIn.Length = new Timecode("00:00:01:00");
evnt.FadeOut.Length = new Timecode("00:00:01:00");