Created
August 31, 2012 20:32
-
-
Save bewebste/3558576 to your computer and use it in GitHub Desktop.
Applescript to toggle Tweetbot window
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
tell application "System Events" | |
if exists application process "Tweetbot" then | |
tell application process "Tweetbot" | |
if frontmost then | |
set visible to false | |
else | |
set frontmost to true | |
end if | |
end tell | |
end if | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment