Create Fades
Fades for Selected Cues
USER PARAMETERS
userDuration
is the duration in seconds of the generated fade cues
applescript
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v211121-01
set userDuration to 5 -- your preferred default fade duration
tell application id "com.figure53.QLab.5" to tell front workspace
set newCues to {}
set theSelection to (selected as list)
repeat with originalCue in theSelection
set selected to originalCue
set originalCueType to q type of originalCue
if originalCueType is in {"Audio", "Video", "Mic", "Fade"} then
set originalLevel to originalCue getLevel row 0 column 0
make type "Fade"
set theFade to last item of (selected as list)
set duration of theFade to userDuration
if originalCueType is in {"Audio", "Video", "Mic"} then
set cue target of theFade to originalCue
theFade setLevel row 0 column 0 db originalLevel
else if originalCueType is "Group" then
set cue target of theFade to originalCue
theFade setLevel row 0 column 0 db 0
else if originalCueType is "Fade" then
set cue target of theFade to (cue target of originalCue)
theFade setLevel row 0 column 0 db originalLevel
end if
set end of newCues to theFade
end if
end repeat
set selected to newCues
end tell
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Fade-and-Stops for Selected Cues
USER PARAMETERS
userDuration
is the duration in seconds of the generated fade cues
applescript
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. v211121-01
set userDuration to 5 -- your preferred default fade duration
tell application id "com.figure53.QLab.5" to tell front workspace
set newCues to {}
set theSelection to (selected as list)
repeat with originalCue in theSelection
set selected to originalCue
set originalCueType to q type of originalCue
if originalCueType is in {"Audio", "Video", "Mic", "Fade"} then
set originalLevel to originalCue getLevel row 0 column 0
make type "Fade"
set theFade to last item of (selected as list)
set duration of theFade to userDuration
if originalCueType is in {"Audio", "Video", "Mic"} then
set cue target of theFade to originalCue
theFade setLevel row 0 column 0 db originalLevel
else if originalCueType is "Group" then
set cue target of theFade to originalCue
theFade setLevel row 0 column 0 db 0
else if originalCueType is "Fade" then
set cue target of theFade to (cue target of originalCue)
theFade setLevel row 0 column 0 db originalLevel
end if
set stop target when done of theFade to 1
set end of newCues to theFade
end if
end repeat
set selected to newCues
end tell
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32