AutoHotkey: CopyNamesToClipWithoutExt: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
(Rewritten using AHK improvements like RegEx syntax)
(Added category AutoHotkey scripts)
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:
  #IfWinActive, ahk_class TTOTAL_CMD
  #IfWinActive, ahk_class TTOTAL_CMD
  ^!+c::                              ;*** Adjust hotkey when needed
  ^!+c::                              ;*** Adjust hotkey when needed
Clipboard := ""
  PostMessage, 1075, 2017
  PostMessage, 1075, 2017
  Return
  ClipWait, 1
OnClipboardChange:
  Clipboard := RegExReplace(Clipboard, "(.+)\..+", "$1")
  Clipboard := RegExReplace(Clipboard, "(.+)\..+", "$1")
  Return
  Return


{{translated|AutoHotkey: Kopiere Dateinamen ohne Erweiterung in die Zwischenablage|AutoHotkey}}
{{translated|AutoHotkey: Kopiere Dateinamen ohne Erweiterung in die Zwischenablage|AutoHotkey}}
[[Category:AutoHotkey scripts|CopyNamesToClipWithoutExt]]

Latest revision as of 19:01, 1 June 2008

/*
Ctrl+Alt+Shift+C copies the filenames to the clipboard using the internal command cm_CopyNamesToClip,
then removes the extension parts from the clipboard.
*/
#IfWinActive, ahk_class TTOTAL_CMD
^!+c::                              ;*** Adjust hotkey when needed
Clipboard := ""
PostMessage, 1075, 2017
ClipWait, 1
Clipboard := RegExReplace(Clipboard, "(.+)\..+", "$1")
Return

Back to AutoHotkey