Created
August 2, 2012 21:19
-
-
Save cilquirm/3240734 to your computer and use it in GitHub Desktop.
a simple applescript for quicksilver to join a sharing session
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
using terms from application "Quicksilver" | |
on process text joinCode | |
tell application "join.me" to activate | |
tell application "System Events" | |
tell process "join.me" | |
set visible to true | |
keystroke joinCode | |
click button 7 of window 1 | |
end tell | |
end tell | |
end process text | |
end using terms from |
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 "join.me" to activate | |
delay 5 | |
tell application "System Events" | |
tell process "join.me" | |
set visible to true | |
click button 9 of window 1 | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Be sure to save it through AppleScript Editor as it needs to get compiled