VEGAS FEATURE REQUEST: Move Event to End

Comments

pinnaclepro wrote on 6/8/2020, 3:28 PM

Dot is correct. You can't "mute" an event. You would never use such a feature again after the first time you forget to set the loop region. 110% impractical.

Ever tried rendering a subclip?

You can mute events by selecting all desired events | right clicking one of them | Switches | Mute. Works for audio or video, and can be used to mute only video, only audio, both at the same time, or a mix of either from different events.

Ustik wrote on 3/5/2021, 6:16 AM

Here is such a macro (download no longer available). It is designed to work with Vegas Pro 17 only. Use "Alt+E" to trigger it after you selected the events.

Only downside is it will keep the empty space between the selected events after having been moved to the end. You could use the Vegas Pro core command "Close Gaps" (via right-clicking into the track) after.


@Marco. Can you please share the script again? The link you posted before disappeared...

jetdv wrote on 3/5/2021, 8:53 AM

Well, the script would need to find the event and then move it to the end of the timeline. But that should be a fairly simple task... You could use the base project I create here:

http://www.jetdv.com/2021/02/01/what-is-the-minimum-i-need-to-write-a-script-for-vegas/

And then add this code in the "main" section:

foreach (Track myTrack in myVegas.Project.Tracks) 
{ 
    foreach (TrackEvent evnt in myTrack.Events) 
    { 
        if (evnt.Selected) 
        { 
            evnt.Start = myVegas.Project.Length; 
            evnt.Selected = false; 
        } 
    } 
}