Run this on a copy of your workspace first in case it doesn’t do what you want!
--set levels of cue outputs 3 to 24 of every audio cue in current cue list
--sliders to inf, input 1+2 matrix sends to 0
tell application id "com.figure53.QLab.4" to tell front workspace
set thecues to (cues of current cue list whose q type is "audio")
repeat with eachcue in thecues
repeat with thecueOP from 3 to 24
setLevel eachcue row 0 column thecueOP db -120
setLevel eachcue row 1 column thecueOP db 0
setLevel eachcue row 2 column thecueOP db 0
end repeat
end repeat
end tell
Mic
--
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/code-of-conduct/
---
You received this message because you are subscribed to the Google Groups "QLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/24686f43-9018-49fe-9b1e-d6934d8528f3n%40googlegroups.com.
--
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/code-of-conduct/
---
You received this message because you are subscribed to the Google Groups "QLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/4b0711d2-f792-4594-a174-fc7fa6fcc9f8n%40googlegroups.com.
tell application id "com.figure53.QLab.4" to tell front workspace to set selected to (cues whose q type is "Audio") as list
Alternatively, you could select all the Audio Cues in the workspace at the same time and use the batch editing functions of the Inspector to set what you need:tell application id "com.figure53.QLab.4" to tell front workspace to set selected to (cues whose q type is "Audio") as listHaven't tested what happens across multiple cue lists if you do this…

To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/67efb859-0982-4649-ae3a-545a8138619dn%40googlegroups.com .
--set levels of cue outputs 3 to 24 of every audio cue in workspace
--sliders to inf
--input 1 to 0 in odd number cue outputs,and inf in even number cue outputs
--input 2 to 0 in even number cue outputs,and inf in odd number cue outputs
tell application id "com.figure53.QLab.4" to tell front workspace
set thecues to (cues whose q type is "audio")
repeat with eachcue in thecues
repeat with thecueOP from 3 to 24 by 2
setLevel eachcue row 0 column thecueOP db -120
setLevel eachcue row 0 column thecueOP + 1 db -120
setLevel eachcue row 1 column thecueOP db 0
setLevel eachcue row 1 column thecueOP + 1 db -120
setLevel eachcue row 2 column thecueOP db -120
setLevel eachcue row 2 column thecueOP + 1 db 0
end repeat
end repeat
end tell
Mic