AutoHotkey scripts for switching to windows
| geek, kaizen, productivityMuscle memory helps you be more efficient. Here’s some AutoHotkey code I use to toggle Chrome (F10), Windows Live Writer (F11), or my Freemind mindmap for Life (F12). Make your own! =)
F10:: WinGetActiveTitle, Title If Instr(Title, "Google Chrome") > 0 { WinMinimize, A } Else If WinExist("ahk_class Chrome_WindowImpl_0") { WinActivate WinMaximize } Else { Run, "C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" } return F11:: WinGetActiveTitle, Title If Instr(Title, "Windows Live Writer") > 0 { WinMinimize, A } Else If WinExist("ahk_class WindowsForms10.Window.8.app.0.33c0d9d") { WinActivate WinMaximize } Else { Run, "C:\Program Files\Windows Live\Writer\WindowsLiveWriter.exe" } return F12:: WinGetActiveTitle, Title If InStr(Title, "Life.mm") > 0 { WinMinimize, A } Else IfWinExist Life.mm { WinActivate WinMaximize } Else { Run, c:\sacha\Life.mm" } return
You can comment with Disqus or you can e-mail me at sacha@sachachua.com.