Created
March 12, 2013 00:13
-
-
Save metaist/5139151 to your computer and use it in GitHub Desktop.
Control Google Docs using AutoHotKey.
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
; Google Docs Utility Functions | |
SavePDF(filename) { | |
SendInput,!f | |
Sleep,200 | |
SendInput,d | |
Sleep,200 | |
SendInput,{Down} | |
Sleep,200 | |
SendInput,{Down} | |
Sleep,200 | |
SendInput,{Enter} | |
Sleep,500 | |
SendInput,{Enter} | |
WinWait, Save As | |
SendInput % filename . ".pdf" | |
SendInput,{Enter} | |
return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment