Skip to content

Instantly share code, notes, and snippets.

@andyscott
Created September 23, 2015 16:35
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyscott/c6a98d9d64cead110708 to your computer and use it in GitHub Desktop.
Save andyscott/c6a98d9d64cead110708 to your computer and use it in GitHub Desktop.
zoom script for OSX
#!/usr/bin/osascript
# usage: zoom <room-number> [room-password] [--name=NAME]
on split(theString, theDelimiter)
set oldDelimiters to AppleScript's text item delimiters
set AppleScript's text item delimiters to theDelimiter
set theArray to every text item of theString
set AppleScript's text item delimiters to oldDelimiters
return theArray
end split
on run argv
set args to {}
repeat with arg in argv
set parts to split(arg, "=")
if (count of parts) > 1
if item 1 of parts is "--name"
set myName to item 2 of parts
end if
else
copy item 1 of parts to end of args
end if
end repeat
try
myName
on error
tell application "System Events"
set myName to name of current user
end tell
end try
set roomName to item 1 of args
try
set roomPassword to item 2 of args
end try
log "You are " & myName
log "Room is " & roomName
try
log "Password is " & roomPassword
end try
set zoom to "zoom.us"
tell application zoom to activate
tell application "System Events"
repeat until visible of process zoom is false
log "waiting for zoom process"
delay 0.2
set visible of process zoom to false
end repeat
end tell
tell application "System Events"
tell process zoom
repeat until window "Join a meeting" exists
click menu item "Join Meeting..." of menu "Zoom.us" of menu bar 1
log "waiting for join meeting window"
delay 0.2
end repeat
set joinMeeting to window "Join a meeting"
set idField to text field 1 of joinMeeting
set nameField to text field 2 of joinMeeting
set joinButton to button "Join" of joinMeeting
set value of idField to roomName
set value of nameField to myName
click joinButton
try
roomPassword
repeat until window "Join a Meeting" exists
log "waiting for password window"
delay 0.2
end repeat
set joinMeeting to window "Join a Meeting"
set passwordField to text field 1 of group 1 of group 1 of joinMeeting
set joinButton to button "Join" of group 1 of joinMeeting
set frontmost to true
keystroke "."
set value of passwordField to roomPassword
click joinButton
end try
end tell
end tell
end run
Copy link

ghost commented Jul 12, 2019

FYI - I've updated this script (heavily) to work with the latest version of the zoom app (4.4). Do you accept patches? :)

@aeksco
Copy link

aeksco commented Aug 22, 2019

@jearls Please share!

@vasilevichra
Copy link

FYI - I've updated this script (heavily) to work with the latest version of the zoom app (4.4). Do you accept patches? :)

please, please, please

@andyscott
Copy link
Author

I'll accept patches!

@zaccha
Copy link

zaccha commented Mar 10, 2021

Is this for opening a zoom meeting and joining?

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