AutoHotkey: Reset the MultiRenameTool automatically: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 9: Line 9:
  WinWaitClose
  WinWaitClose
  }
  }
Back to [[AutoHotkey]]

Revision as of 11:25, 3 June 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