Comments

jetdv wrote on 8/24/2004, 11:18 AM
Here is a way to create a track and add an image at the beginning of that track.

"Takes" allows you to have multiple media in a single event. On the timeline you can view the different takes by simply pressing "T". You can add new takes by right-click and dragging new media to an event and choosing "Add as Takes".
2G wrote on 9/1/2004, 6:34 AM
Allow me to slightly alter your original request. The inheritance hierarchy is very flat. Most classes inherit from System.Object, System.Enum, or Sony.Vegas.BaseList. There are a few exceptions such as VideoTrack and AudioTrack inherit from Track. But basically, the inheritance info is not significantly useful in most cases. On the other hand a CONTAINMENT hierarchy diagram would be very useful. e.g. Project contains "Tracks"; Tracks contain collection of Track objects. Track objects contain Events collection, etc. etc. etc.

You can glean this from the class reference doc. But it is a pain, especially since there is no rhyme or reason to the ordering of the classes in the doc. JScript could learn a thing or two from JavaDoc as far as organization of documentation.