Skip to content

Instantly share code, notes, and snippets.

@unclewalter
Created June 18, 2023 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unclewalter/498e41074350d16fc281d3cafe906d3c to your computer and use it in GitHub Desktop.
Save unclewalter/498e41074350d16fc281d3cafe906d3c to your computer and use it in GitHub Desktop.
Stop all audio cues
tell application id "com.figure53.QLab.5" to tell front workspace
set the_cues to (active cues as list)
repeat with the_cue in the_cues
if q type of the_cue is "Audio" then
stop the_cue
end if
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment