If I remember correct the user defined keys can also be set to a midi setting. Set it to some control change. In the workspace settings of qlab you can set control by MIDI.
For scene changes look in the M7CL manual for corresponding MIDI table.
Regards Joey
set userDelta to 10tell front workspacerepeat with eachCue in (selected as list)tryif running of eachCue is true thenpause eachCueset currentTime to action elapsed of eachCueset desiredTime to currentTime + userDeltaload eachCue time desiredTimestart eachCueend ifend tryend repeatend tell
Rich (and all)
Your script doesn't work for me either as a hotkey, but this script seems to work:
set userDelta to 10
tell front workspace
repeat with eachCue in (selected as list)
pause eachCue
set currentTime to action elapsed of eachCue
set desiredTime to currentTime + userDelta
load eachCue time desiredTime
start eachCue
end repeat
end tell
Running that script on a running cue will pause it, and then running it again will jump ahead ten seconds and then un-pause it.
set userDelta to 10tell front workspacerepeat with eachCue in (selected as list)
if q type of eachCue is not "Script" then
tryif running of eachCue is true then
pause eachCueset currentTime to action elapsed of eachCueset desiredTime to currentTime + userDelta
delay 5load eachCue time desiredTimedelay 5
start eachCueend ifend try
end ifend repeatend tell
tell front workspaceset selectedCue to last item of (selected as list)pause selectedCuedelay 5start selectedCueend tell