Comments

jetdv wrote on 3/4/2011, 8:59 AM
Like this?


/**
* This script will set the time at the cursor position to zero.
* SetCursorTimelineToZero.cs
*
* Written By: Edward Troxel
* Modified: 03-04-2011
**/

using Sony.Vegas;

public class EntryPoint
{
Vegas myVegas;

public void FromVegas(Vegas vegas)
{
myVegas = vegas;

myVegas.Project.Ruler.StartTime = new Timecode(0);
myVegas.Project.Ruler.StartTime = new Timecode(0) - myVegas.Transport.CursorPosition;

}



}
Cooldraft wrote on 3/4/2011, 9:41 AM
Oh now you are definitely the man x 1900. This works great for tweaking a dvd on preview on a stitched project! A W E S O M E!