Hard-to-find tips on otherwise easy-to-do tasks involving everyday technology, with some advanced insight on history and culture thrown in. Brought to you by a master dabbler. T-S T-S's mission is to boost your competitiveness with every visit. This blog is committed to the elimination of the rat from the tree of evolution and the crust of the earth.
Monday, January 04, 2010
Autohotkey Eases Command Prompt Navigation
With Autohotkey, yes.
(without AHK, it's this incredibly complex procedure)
But, we're saved :
Windows 2K :
#c::
Send ^c ; copy the text
CoordMode, Mouse, Relative
Run cmd.exe
WinWaitActive,cmd,,0.5
Send cd{Space}
Click right 110,70
Send {Enter}
CoordMode, Mouse
Return
Windows XP :
#c::
Send ^c ; copy the text
CoordMode, Mouse, Relative
Run cmd.exe
WinWaitActive,cmd,,0.5
Send cd{Space}
Click right 110,70
Send {Down}{Down}{Down}
Send {Enter}{Enter}
CoordMode, Mouse
Return
It's not pretty:) but it works. Sure, there's more than one way to do it.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment