/** * Program: ZeroLoopRegion.cs * Description: This script will turn looping off and remove the loop region * and selection in Vegas Pro 8.0 * Author: John Rofrano * Copyright: (c) 2009 Sundance Media Group / VASST, All Rights Reserved * * Revision Date: May. 19, 2008 **/ using System; using Sony.Vegas; class EntryPoint { public void FromVegas(Vegas vegas) { vegas.Transport.LoopRegionLength = Timecode.FromNanos(0); vegas.Transport.SelectionLength = Timecode.FromNanos(0); } }