Comments

JohnnyRoy wrote on 3/10/2015, 3:14 PM
> "Anyone knows a script that can select all muted events in selected track or in all tracks?"

Here's one that will select all muted events in a project while deselecting those that may already be selected:
(especially if the next key you press will be delete) ;-)

//*******************************************************************
//* Program: SelectMutedEvents.cs
//* Author: John Rofrano
//* Updated: March 10, 2015
//* Description: Selects all of the muted events and deselects all
//* non-muted events.
//*------------------------------------------------------------------
//* Copyright: (c) 2015, John Rofrano, All Rights Reserved
//*******************************************************************
using System;
//using System.Windows.Forms;
using Sony.Vegas;

class EntryPoint
{
public void FromVegas(Vegas vegas)
{
foreach (Track track in vegas.Project.Tracks)
{
foreach (TrackEvent trackEvent in track.Events)
{
if (trackEvent.Mute)
{
trackEvent.Selected = true;
}
else
{
trackEvent.Selected = false;
}
}
}
}
}


~jr

John Rofrano
Sundance Media Group / VASST
www.vasst.com
www.fasstapps.com
Márcio Nascimento Brazil wrote on 5/12/2015, 4:42 PM
T H A N K Y O U !
T H A N K Y O U !
T H A N K Y O U !

It makes possible delete all muted events and resume three tracks to only one, what reduce a lot my render times!

T H A N K Y O U ! SOOOOOO MUCH!!!!
:) :) :)
JohnnyRoy wrote on 7/29/2015, 6:21 AM
You are very welcome. Glad I could help.

~jr

John Rofrano
Sundance Media Group / VASST
www.vasst.com
www.fasstapps.com