--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
Bluesky: https://bsky.app/profile/qlab.app
---
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 visit https://groups.google.com/d/msgid/qlab/ff846be5-11d8-40fd-b209-949d0b3ab0a6n%40googlegroups.com.
repeat with originalCue in (selected as list)
set cuesToProcess to (selected as list)
set containedIDs to {} -- We need to check for nested cues that are already selected so as not to add them twice; lists of "cues" can't be compared, only of IDs
repeat with eachCue in cuesToProcess
set end of containedIDs to uniqueID of eachCue
end repeat
set i to 0
repeat until i = (count containedIDs)
set eachID to item (i + 1) of containedIDs
set eachCue to cue id eachID
if q type of eachCue is "Group" then
repeat with eachChild in cues of eachCue
set childID to uniqueID of eachChild
if childID is not in containedIDs then
set end of cuesToProcess to eachChild -- Cue is not already selected, so add it for processing
set end of containedIDs to childID
end if
end repeat
end if
set i to i + 1
end repeat
repeat with originalCue in cuesToProcess


On 18 Jun 2025, at 10:44, Mike Stephens <mkstep...@gmail.com> wrote:Yep that does not work for me. I get no audio cues found selected. Would you mind sending me the script from your side? Im sure ive missed something.
<Before.png><After.png><Before.png><After.png>
--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
Bluesky: https://bsky.app/profile/qlab.app
---
You received this message because you are subscribed to a topic in the Google Groups "QLab" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qlab/IhUMsk4px70/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qlab+uns...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/qlab/A9322104-3ADB-4395-A1D1-5DB260969A6A%40mac.com.
--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
Bluesky: https://bsky.app/profile/qlab.app
---
You received this message because you are subscribed to a topic in the Google Groups "QLab" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qlab/IhUMsk4px70/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qlab+uns...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/qlab/A9322104-3ADB-4395-A1D1-5DB260969A6A%40mac.com.
On 18 Jun 2025, at 16:45, Mike Stephens <mkstep...@gmail.com> wrote:Thanks Rich. I found an error my end which was stopping that working. I can now replicate what you have replicated.What would I need to do to create one relative fade out cue which sits outside of the group stack. So I therefor don't end up with a fade added to each group? So a relative fade on Outer Group which stops audio once complete.Mike.
--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
Bluesky: https://bsky.app/profile/qlab.app
---
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 visit https://groups.google.com/d/msgid/qlab/5b4fe7da-ce30-4544-a13e-0e6131386e50n%40googlegroups.com.