Skip to content

Instantly share code, notes, and snippets.

@cilquirm
Created August 2, 2012 21:19
Show Gist options
  • Save cilquirm/3240734 to your computer and use it in GitHub Desktop.
Save cilquirm/3240734 to your computer and use it in GitHub Desktop.
a simple applescript for quicksilver to join a sharing session
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
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
@cilquirm
Copy link
Author

cilquirm commented Aug 8, 2012

Be sure to save it through AppleScript Editor as it needs to get compiled

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment