tell application id "com.figure53.QLab.5" to tell front workspace
set playhead of current cue list to cue ".01"
load (cue ".01") time 78
end tell
On 2 Sep 2025, at 15:47, Pace <pascal...@videotron.ca> wrote:
Hello all !!!I'm trying to make a cue that would place the play head to a certain cue number and load to a specific time. I asked ChatGPT to help me and it suggested me an Apple script. In fact, a lot of them neither of which works. I guess it doesn't have to be an Apple script but I'm curious to know what it would look like. The number of the cue that I would like to place the playhead to is .01 which is a group cue (mode timeline) that contains audio cues and video cues. Load to time is 78 seconds though i know that I would just have to change cue number and load to time. If you want , i can send you the different tries of ChatGPT. Once again, thank you for your precious help.
<Capture d?e?cran, le 20 25-09-02 à 09.58.40.png>
On 2 Sep 2025, at 15:47, Pace <pascal...@videotron.ca> wrote:
Hello all !!!I'm trying to make a cue that would place the play head to a certain cue number and load to a specific time. I asked ChatGPT to help me and it suggested me an Apple script. In fact, a lot of them neither of which works. I guess it doesn't have to be an Apple script but I'm curious to know what it would look like. The number of the cue that I would like to place the playhead to is .01 which is a group cue (mode timeline) that contains audio cues and video cues. Load to time is 78 seconds though i know that I would just have to change cue number and load to time. If you want , i can send you the different tries of ChatGPT. Once again, thank you for your precious help.
<Capture d?e?cran, le 20 25-09-02 à 09.58.40.png>
--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
Bluesky: https://bsky.app/profile/qlab.app
---
You received this message because you are subscribed to the Google Groups "QLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qlab+uns...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/qlab/f8eb0be4-af2d-4570-96b8-079a774017b0n%40googlegroups.com.
tell application id "com.figure53.QLab.5" to tell front workspaceset playhead of current cue list to cue ".01"load (cue ".01") time 78end tell
On 2 Sep 2025, at 15:47, Pace <pascal...@videotron.ca> wrote:
Hello all !!!I'm trying to make a cue that would place the play head to a certain cue number and load to a specific time. I asked ChatGPT to help me and it suggested me an Apple script. In fact, a lot of them neither of which works. I guess it doesn't have to be an Apple script but I'm curious to know what it would look like. The number of the cue that I would like to place the playhead to is .01 which is a group cue (mode timeline) that contains audio cues and video cues. Load to time is 78 seconds though i know that I would just have to change cue number and load to time. If you want , i can send you the different tries of ChatGPT. Once again, thank you for your precious help.
You don’t need a Script Cue: use a GoTo Cue that auto-continues into a Load Cue, both targeting cue “.01”. On the Load Time tab of the Load Cue, set the "Load target cue to time" to 78.Script version:tell application id "com.figure53.QLab.5" to tell front workspace
set playhead of current cue list to cue ".01"
load (cue ".01") time 78
end tell
It’s a pretty trivial script.
load (a Command)cue (a Class)load cue (another Class)
-- load specified cue to time and move playhead to that cue
tell application id "com.figure53.QLab.5" to tell front workspace
set myCueNum to "0.01"
set loadTime to 78
set myCue to cue myCueNum
load myCue time loadTime
set playhead of (parent list of myCue) to myCue
end tell
You can also do this with OSC via Network cues, but the useful look
/cue/0.01/loadAt 78
/cue/999/playhead "0.01"
assuming you have give the cue list of your cue a number of 999
the rather promising looking OSC command
/cue/{cue_number}/loadAndSetPlayhead
will set the playhead but infuriating loads the cue to 0 (and when I tried putting them in a group it did something weird). So in this case I think the best solution may be using Load and Goto cue solution as suggested by Chris