tell application id "com.figure53.QLab.5" to tell front workspace
repeat
if notes of cue "LEV" < 10 then
start cue "NOTC"
else
stop cue "NOTC"
delay 0.1
end if
end repeat
end tell
Mic
current timecode text of current cue list
On 28 Jul 2025, at 17:49, micpool <m...@micpool.com> wrote:
As you are using LTC this is fairly straightforward as you can use the amplitude of the LTC
In the attached video QLab 4 is being used as the TC generator and is sending to QLab 5 on ch 16 of a virtual Bus.
In QLab 5 :
There is a text cue numbered "NOTC" that should play when there is no LTC input.There is a group cue named TIMECODE MONITOR
The group contains:A microphone cue numbered "TCMON" which routes the incoming timecode from virtual bus 16 to an unused audio bus (demo uses ch 10)
tell application id "com.figure53.QLab.5" to tell front workspace
repeat
if current timecode text of current cue list is "" then
start cue "NOTC"
else
stop cue "NOTC"
end if
delay 0.1
end repeat
end tell
Screen recording and workspace attached