Ivan,
If you are using Vegas8, try this little script, it should do what you are looking for.
Select the first track (your media should be in the first track).
Save the script with a ‘.CS’ extension.
////////////////
using Sony.Vegas;
public class EntryPoint
{
Vegas myVegas;
public void FromVegas(Vegas vegas)
{
myVegas = vegas;
for (int i = myVegas.Project.Tracks[0].Events.Count – 1; i > 0; i–)
{
myVegas.Transport.CursorPosition = myVegas.Project.Tracks[0].Events[i].Start;
myVegas.ImportFile(“D:\\YourFile.AVI”, false); // replace with your file path
}
}
}
////////////////////