Created
December 14, 2016 22:44
-
-
Save RayBB/a08ebec97c68b763b3774a95f024670b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Basically, on z keypress, this program coppies selected text, alt tabs, pastes, and switches back | |
;; Need Auto hotkey to run this | |
z:: | |
SendEvent {Ctrl Down}c{Ctrl Up} | |
Sleep, 100 | |
Send, {ALT DOWN}{TAB}{ALT UP} | |
Sleep, 100 | |
Send, ^V | |
Send, {ALT DOWN}{TAB}{ALT UP} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment