Created
September 6, 2016 16:42
-
-
Save conscientiousness/2aaec91df4b5be00abecac1fbbd7d6c4 to your computer and use it in GitHub Desktop.
Using apple script to open Xcode and do something
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
tell application "Xcode" | |
activate | |
end tell | |
delay 1 | |
tell application "System Events" | |
tell process "Xcode" | |
tell menu bar 1 | |
tell menu bar item 10 | |
tell menu 1 | |
tell menu item 12 | |
tell menu 1 | |
click menu item 3 | |
end tell | |
end tell | |
end tell | |
end tell | |
end tell | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment