Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums VEGAS Pro sony vegas timeline

  • sony vegas timeline

    Posted by Darrell Iucci on January 27, 2010 at 3:05 am

    how 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
    JETDV Scripts

  • Darrell Iucci

    January 27, 2010 at 3:36 pm

    where do I put this script

  • Edward Troxel

    January 28, 2010 at 4:16 pm

    Copy it, paste it into notepad, save it into the “Script Menu” folder in the Vegas install folder as “SelectEventsAfterCursor.cs”

    Edward Troxel
    JETDV Scripts

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy