-
sony vegas timeline
Posted by Darrell Iucci on January 27, 2010 at 3:05 amhow do I select from all tracks everything to the right of the cursor. I know you can use the selection tool. Is there any other shortcuts
Edward Troxel replied 16 years, 8 months ago 2 Members · 3 Replies -
3 Replies
-
Edward Troxel
January 27, 2010 at 2:32 pm/**
* 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;
}
}
}}
}
-
Edward Troxel
January 28, 2010 at 4:16 pm
Reply to this Discussion! Login or Sign Up
