Created
June 12, 2013 18:48
-
-
Save beauvais/5767998 to your computer and use it in GitHub Desktop.
AppleScript to tell iA Writer to create a new document, insert "Just Type:", and set itself to Zen Mode.
This file contains hidden or 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
set s to "Just type:" & return & "---" & return | |
activate application "iA Writer" | |
tell application "iA Writer" | |
make new document | |
activate | |
delay 0.2 | |
tell application "System Events" to keystroke s | |
tell application "System Events" to keystroke "d" using command down | |
tell application "System Events" to keystroke "f" using {command down, control down} | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this.
IA team posted a Shortcut for iOS to create new document from Safari web content on iOS device (of course). Do you happen to have an Apple Script in the library of what you've built for IA Writer to do same for Mac? Thanks!