[bryan powers] “Is there a script or shortcut that makes this fairly easy work around even easier.”
Here is a script that I just wrote for you which will do this. Cut and paste it into a file called TogglePreview.cs and place it in the Script Menu folder and then just assign it to a key combination to it:
//*******************************************************************
//* Program: TogglePreview.cs
//* Author: John Rofrano
//* Updated: July 4, 2011
//* Description: Toggles the video preview to clear dynamic RAM
//*------------------------------------------------------------------
//* Copyright: (c) 2011, John Rofrano, All Rights Reserved
//*******************************************************************
using System;
using System.Diagnostics;
using System.Windows.Forms;
using Sony.Vegas;
public class EntryPoint
{
public void FromVegas(Vegas vegas)
{
try
{
VideoPreviewSize originalSize = vegas.Project.Preview.PreviewSize;
vegas.Project.Preview.PreviewSize = VideoPreviewSize.Full;
vegas.UpdateUI();
vegas.Project.Preview.PreviewSize = VideoPreviewSize.Half;
vegas.UpdateUI();
vegas.Project.Preview.PreviewSize = originalSize;
vegas.UpdateUI();
}
catch (Exception e)
{
MessageBox.Show(e.Message, "Critical Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
}
}
~jr
http://www.johnrofrano.com
http://www.vasst.com