AutoHotkey: Reset the MultiRenameTool automatically

From TotalcmdWiki
Jump to navigation Jump to search

This script will wait for the Multirename Tool to appear, and reset the data automatically.

#Persistent

loop
{
	WinWait ahk_class TMultiRename
	Send {F2}{Home}{Down}{Enter}
	WinWaitClose
}

Back to AutoHotkey