Video Capture Annoying Dialog

Maestro wrote on 6/16/2005, 2:35 PM
Every time the video capture application gets focus it pops up that "Verify Tape Name" dialog if I'm not in the middle of capturing. Doesn't matter if I give it a tape name--all I have to do is give focus to another application and switch back to vidcap and it pops up EVERY time.

Is there a way to disable this dialog?

-Brent

Comments

JVRaines wrote on 2/14/2015, 12:52 PM
I know this is an ancient post, but I have long been plagued by the same annoyance. Today I finally fixed it with the wonderful free utility AutoHotKey. This very simple script will banish the dialog every time it appears:

while 1 = 1
{
WinWaitActive Verify Tape Name
SendInput {Enter}
}