Deselect Locked Events in Vegas Pro

This short tutorial answers another forum question. When selecting events, if any of the events have been locked then none of the events can be moved. So this script will deselect any locked events from the event that have been selected allowing the non-locked events to be moved/modified. Please sign up here and leave comments Read More …

Create a Sub-Clip or Insert Partial Video From the Original Clip in Premiere Pro

In this tutorial, we look at a couple of ways to get a partial clip onto the timeline in Premiere Pro. Both are very useful and have their place so it is nice to learn both methods. To insert a sub-clip, you first have to create the sub-clip from the original clip. This sub-clip will Read More …

Building a Custom Command in VEGAS – Part 9 – Passing Parameters and Locating the Config file

In this tutorial, we see how parameters can be passed to a script by looking at the four methods VEGAS can use to call the script. public void FromVegas(Vegas vegas) public void FromVegas(Vegas vegas, String scriptFile) public void FromVegas(Vegas vegas, String scriptFile, XmlDocument scriptSettings) public void FromVegas(Vegas vegas, String scriptFile, XmlDocument scriptSettings, ScriptArgs args) We Read More …

Building a Custom Command in VEGAS – Part 8 – Calling another Script

This tutorial expands on the previous tutorial by showing how to pass the Vegas variable to each tab that is added. By passing the Vegas variable, each tab can then easily access Vegas. Then this tutorial continues by showing how to call a script from the Custom Command. Calling other scripts can only be done Read More …

Building a Custom Command in VEGAS – Part 7 – Using Multiple Forms With a Tab Control

This tutorial continues building on the Custom Command by adding multiple forms using the “User Control”. These forms can then be easily modified and added to a Tab Control so all forms can be viewed in the Custom Command. Adding new tabs is then as simple as adding a new User Control and then adding Read More …