AutoHotkey: Reset the MultiRenameTool automatically

From TotalcmdWiki
Revision as of 13:27, 24 September 2005 by Stance (talk | contribs) (Link to the missing german page added)
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