Skip to content

Instantly share code, notes, and snippets.

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