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

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
 
(Added category AutoHotkey scripts)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This script sends F2 instead of Enter when in Copy or Move dialog.
This script sends F2 instead of Enter when in Copy or Move dialog.
Careful: if you redefine the Enter key, it will not work as a terminator for hotstrings, see here: http://www.autohotkey.com/forum/viewtopic.php?t=4232


  $Enter::
  $Enter::
Line 7: Line 9:
  Send, {Enter}
  Send, {Enter}
  return
  return
Back to [[AutoHotkey]]
[[Category:AutoHotkey scripts|Always copy / move in Queue]]
[[de:AutoHotkey: Kopieren / Bewegen immer in Warteschlange]]

Latest revision as of 18:43, 1 June 2008

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

Careful: if you redefine the Enter key, it will not work as a terminator for hotstrings, see here: http://www.autohotkey.com/forum/viewtopic.php?t=4232

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


Back to AutoHotkey