Autohotkey: Spread Selection with Parameter

From TotalcmdWiki
Revision as of 22:19, 1 April 2006 by Sheepdog (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

If you regularly want to select a certain filetype you may use this script in a button or starter command. even on commandline it should work The given parameter is taken as the mask for spreading the selection


;This script spreads the selection in TC with the passed Parameter as filter mask
; 
IfWinActive ahk_class TTOTAL_CMD
{
PostMessage 1075, 521, , , ahk_class TTOTAL_CMD
send,%1%
Controlclick, OK, ahk_class TCOMBOINPUT
}

return

Back to AutoHotkey