Would it be possible to create a keystroke option?So on a fade cue you hit the target button and then move to the cue you want targeted and just click on that cue directly?
--sets the target of a selected fade cue to the next clicked cue
--put this script in a script cue with a hotkey trigger
tell application id "com.figure53.QLab.5" to tell front workspace
try
set theFadeCue to last item of (selected as list)
repeat until (last item of (selected as list) is not theFadeCue)
delay 0.1
end repeat
end try
set theTargetCue to last item of (selected as list)
try
set the cue target of theFadeCue to theTargetCue
end try
end tell
tell application id "com.figure53.QLab.5" to tell front workspace
try -- This protects against no selection (can't get last item of (selected as list))
set the clipboard to uniqueID of last item of (selected as list) as text
end try
end tell
tell application id "com.figure53.QLab.5" to tell front workspace
try -- This protects against all kinds of things, including the selected cue not taking cue targets and the clipboard not being a valid UUID string
set cue target of last item of (selected as list) to cue id (the clipboard)
end try
end tell