You can make one with a script. First you need a script that will fade the event for you. The following JavaScript code will do this. Just cut and paste it into a file called FadeEventInOut.js
/**
* Program: FadeEventInOut.js
* Description: This script will add a 1 second fade both ends of the current event
* Author: John Rofrano
*
* Date: June 7, 2003
* April 27, 2004 - Updated for Vegas 5 libraries
* June 15, 2005 - Updated to work on ALL selected events
*
**/
import System.Windows.Forms;
import Microsoft.Win32;
import Sony.Vegas;
/* Change the following to be the length of the fade */
/* note: 1000 = 1 second */
var fadeAmount : Timecode = new Timecode(1000);
try
{
for (var track in Vegas.Project.Tracks)
{
for (var trackEvent in track.Events)
{
if (trackEvent.Selected)
{
trackEvent.FadeIn.Length = fadeAmount;
trackEvent.FadeOut.Length = fadeAmount;
}
}
}
}
catch (errorMsg)
{
MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
Place the file in the Vegas .\Script Menu folder. Then In Vegas make a keyboard short-cut to the script. In Vegas Pro 8.0 it’s Options | Customize Keyboard and assign the script to a short-cut.
~jr
http://www.johnrofrano.com
http://www.vasst.com