DanP Guest
|
Posted: Thu Nov 01, 2007 4:52 pm Post subject: Windows Media Encoder |
|
|
If you like me hate windows media encoder, because it won't just keep trying to encode, and stops every couple minutes on any sort of failure, and waits for you to click "Close" and "Start Encoding" then this script is for you:
Loop {
WinWait, Encoding Results,
IfWinNotActive, Encoding Results, , WinActivate, Encoding Results,
WinWaitActive, Encoding Results,
Send, {ALTDOWN}c{ALTUP}
WinWait, ahk_class MS Windows Media Encoder,
IfWinNotActive, ahk_class MS Windows Media Encoder, , WinActivate, ahk_class MS Windows Media Encoder,
WinWaitActive, ahk_class MS Windows Media Encoder,
Send, {CTRLDOWN}{SHIFTDOWN}e{SHIFTUP}{CTRLUP}
}
I compiled it into an .exe for use on my windows media encoder machines and it just keeps WME going.
This has saved me about an hour a week of restarting the damn things.
GOD BLESS YOU AUTOHOTKEY! |
|