Select Specific cue fade ins or outs only

65 views
Skip to first unread message

markus vass

unread,
Feb 15, 2023, 3:38:22 AM2/15/23
to QLab
Hi

Is there a script for Qlab to differentiate between audio, video, camera fade in/fade out cues to be selected? 
For now I just want to change volumes for all video cue fade ins, but would be handy to be able to select only fade ins or fade outs for specific cue type later on..  
I´m thinking fancy paste would do when cues are selected.

Cheers!
Markus

micpool

unread,
Feb 15, 2023, 3:58:31 AM2/15/23
to QLab
tell application id "com.figure53.QLab.5" to tell front workspace to set selected to (cues whose q type is "fade" and q type of cue target is "video") as list

micpool

unread,
Feb 15, 2023, 4:14:01 AM2/15/23
to QLab
Differentiating between fade outs and ins is more  difficult as there are so many parameters that can be faded, and they vary by q type.

But generally you can still write a one line script to select them, e.g to select opacity fade outs of video cues

tell application id "com.figure53.QLab.5" to tell front workspace to set selected to (cues whose q type is "fade" and q type of cue target is "video" and (opacity is less than opacity of cue target)) as list

Mic

markus vass

unread,
Feb 15, 2023, 6:13:06 AM2/15/23
to QLab
Ahh sorry didn't see your second reply

markus vass

unread,
Feb 15, 2023, 2:35:30 PM2/15/23
to QLab
Cheers Mic!
Ended up with these

Select all video fade ins:

tell application id "com.figure53.QLab.5" to tell front workspace
    set selected to (cues whose q type is "fade" and q type of cue target is "video" and (opacity is greater than opacity of cue target)) as list
   
end tell

Select all video fade outs:

tell application id "com.figure53.QLab.5" to tell front workspace
    set selected to (cues whose q type is "fade" and q type of cue target is "video" and (opacity is equal to opacity of cue target)) as list
   
end tell
Reply all
Reply to author
Forward
0 new messages