tell application id "com.figure53.QLab.4" to tell front workspace
tell slice marker record 1 of cue "VIDEO1"
set time to "2.54"
end tell
end tell
end using terms from
I am guessing that its one of the below :
tell application id "com.figure53.QLab.4" to tell front workspace
set markertime to 2.54
set oscCmd to "/cue/VIDEO1/addSliceMarker " & (markertime as string)
do shell script "echo " & oscCmd & " | nc -u -w 0 127.0.0.1 53535"
end tell
tell front workspaceset selectedCue to last item of (selected as list)set sliceMarkers to slice markers of selectedCueif (count sliceMarkers) is 0 then -- No existing slicesset sliceMarkers to {{time:123.4, playCount:1}}elseset item 1 of sliceMarkers to {time:123.4, playCount:1}end ifset slice markers of selectedCue to sliceMarkersend tell
--
Contact support anytime: sup...@figure53.com
Follow Figure 53 on Twitter: https://twitter.com/Figure53
User Group Code of Conduct: https://figure53.com/help/code-of-conduct/
---
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 on the web visit https://groups.google.com/d/msgid/qlab/edd20138-fb40-4ecd-bf92-b0afbfed2419%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
using terms from application "QLab"
tell application "QLab" to tell front workspace
set last slice infinite loop of cue "LOGO-BG" to true
set OldSlice to slice markers of cue "LOGO-BG"
set NewSlice to {{playCount:1, time:8.0}}
set slice markers of cue "LOGO-BG" to NewSlice