AutoHotkey: Copy Selection To Clipboard In Lister

From TotalcmdWiki
Revision as of 20:22, 23 July 2005 by Icfu (talk | contribs) (errors corrected)
Jump to navigation Jump to search
; Text you select in the lister is automatically copied to clipboard.
; Raise the sleep interval, specified in milliseconds, if the error box
; is not closed automatically, lower it if your system is fast enough.

*~LButton Up::
IfWinActive, ahk_class TLister
{
  Send, ^c
  Sleep 100
  IfWinActive, ahk_class #32770
    Send, {ESC}
}
Return


Back to AutoHotkey