Forked from cilquirm/Join a Sharing Session.scpt
Last active
August 29, 2015 14:20
-
-
Save andymadge/13182942246e36411c36 to your computer and use it in GitHub Desktop.
Join.me Applescripts
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 4 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 6 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