Hi. I just upgraded from Sony Vegas Pro 11 (just limping along) to the Magix Vegas Pro Suite 17. I had a script called "SelectEventsAfterCursor.cs" that did this exact thing. Is there anything like it for VPS 17? Thank you.
Here are the contents of the script with the original author's name:/**
* This script will select all events after the cursor
*
* Written By: Edward Troxel
* Modified: 10-23-2007
**/
using System;
using Sony.Vegas;
public class EntryPoint
{
Vegas myVegas;
public void FromVegas(Vegas vegas)
{
myVegas = vegas;
foreach (Track track in myVegas.Project.Tracks)
{
foreach(TrackEvent evnt in track.Events)
{
evnt.Selected = false;
if (evnt.Start >= myVegas.Cursor)
{
evnt.Selected = true;
}
}
}
}
}