AutoHotkey: Always copy / move in Queue: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 7: Line 7:
  Send, {Enter}
  Send, {Enter}
  return
  return
Back to [[AutoHotkey]]

Revision as of 20:04, 22 August 2005

This script sends F2 instead of Enter when in Copy or Move dialog.

$Enter::
If WinActive("ahk_class TInpComboDlg")
	Send, {F2}
else
	Send, {Enter}
return


Back to AutoHotkey