AutoHotkey: Reset the MultiRenameTool automatically: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
(Link to the missing german page added)
Line 12: Line 12:
Back to [[AutoHotkey]]
Back to [[AutoHotkey]]


[[de:Reset the MultiRenameTool automatically]]
[[de:AutoHotkey: Reset the MultiRenameTool automatically]]

Revision as of 13:27, 24 September 2005

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