Starting with a jscript example that added tracks to the current project, I tried to do the following:
Track Mytrack = new Track(MediaType.Audio);
proj.Tracks.Add(Mytrack);
I get a compiler error that tells me that
in C#.
Cannot create an instance of the abstract class or interface 'SonicFoundry.Vegas.Track'
Is this correct/possible?