Skip to content

Instantly share code, notes, and snippets.

@jonmagic
Created July 17, 2025 05:05
Show Gist options
  • Select an option

  • Save jonmagic/a9ebeb20d7cdf94923533e0f59ad188e to your computer and use it in GitHub Desktop.

Select an option

Save jonmagic/a9ebeb20d7cdf94923533e0f59ad188e to your computer and use it in GitHub Desktop.
on run
repeat
tell application "System Events"
tell process "zoom.us"
try
set transcriptButton to first button of front window whose description is "Save transcript"
click transcriptButton
on error
-- Silently continue if button not found (maybe not in a meeting)
end try
end tell
end tell
delay 60 -- Wait 1 minute after clicking
end repeat
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment