Now, the Add One Second script, what do I edit in that? See below:-
using Sony.Vegas;
public class EntryPoint
{
Vegas myVegas;
Timecode offset = new Timecode("00:00:01:00"); //1 second
public void FromVegas(Vegas vegas)
{
myVegas = vegas;
myVegas.SelectionLength = myVegas.SelectionLength + offset;
}
}