Setting Keyboard command for Select Events to End

realhelp wrote on 4/12/2015, 12:03 AM
Hi everyone --

OK, I've had this problem before, but I'm now editing a project that requires that I use the "Select Events to End" command (in the context-sensitive menu for a specific clip) about a million times. So I would like to assign a key command to it. But when I go into the "Customize Keyboard" option in the Options menu, I cannot find this command anywhere.

Can anyone tell me where the "Select Events to End" command can be found in Customize Keyboard, and what its code-word is (e.g. "Edit.Select.EventEnd", except it's not that).

Thanks!!!

Comments

Grazie wrote on 4/12/2015, 5:55 AM
No, I don't know, but if you are willing to part with $9.95, I use VASST's Event Tools.

This sits on my Toolbar or I can summon this up with a KB Command, and it will have retained the PREVIOUS Command, here that would have been the option for all From =>> End for my Selection too.

Grazie

wwaag wrote on 4/12/2015, 10:50 AM
I do this all the time the following script. It selects all events under and to right of the cursor on all tracks. I also have scripts for selecting only events under the cursor and also events before the cursor. Very useful and a lot quicker by assigning keyboard commands. Its also a lot safer than using auto-ripple for adding or deleting events on the timeline.

wwaag

/** 
* Program: SelectEventsFromCursor.js
* Description: This script will select all the events on all tracks that are
* under the cursor position and to the right of it.
* Author: Johnny (Roy) Rofrano john_rofrano at hotmail dot com
*
* Date: March 24, 2004
*
**/

import Sony.Vegas;
import System.Windows.Forms;

try
{
// step through all the tracks
for (var track in Vegas.Project.Tracks)
{
// Step through all events
for (var evnt in track.Events)
{
// Check to see if event is under or to the right of the cursor
if (-1== Vegas.Cursor.CompareTo(evnt.Start + evnt.Length))

//if (evnt.Start <= Vegas.Transport.CursorPosition && evnt.End >= Vegas.Transport.CursorPosition)

{
evnt.Selected = true;
}
else
{
evnt.Selected = false;
}
}
}
}
catch (errorMsg)
{
MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}

AKA the HappyOtter at https://tools4vegas.com/. System 1: Intel i7-8700k with HD 630 graphics plus an Nvidia RTX4070 graphics card. System 2: Intel i7-3770k with HD 4000 graphics plus an AMD RX550 graphics card. System 3: Laptop. Dell Inspiron Plus 16. Intel i7-11800H, Intel Graphics. Current cameras include Panasonic FZ2500, GoPro Hero11 and Hero8 Black plus a myriad of smartPhone, pocket cameras, video cameras and film cameras going back to the original Nikon S.

JackW wrote on 4/12/2015, 12:39 PM
Or use Excalibur

Jack