AutoHotkey: Reset the MultiRenameTool automatically: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
(Link to the missing german page added)
No edit summary
Line 10: Line 10:
  }
  }


Back to [[AutoHotkey]]
<BR>
----
<BR>Back to [[AutoHotkey]]<BR>


[[de:AutoHotkey: Reset the MultiRenameTool automatically]]
[[de:AutoHotkey: Setze die Einstellungen des Mehrfach Umbenennen Tools automatisch zurück]]

Revision as of 11:35, 27 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