--
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 a topic in the Google Groups "QLab" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qlab/euCS9hYieaY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/41e62d9c-57e2-490a-af42-735b3e3be7c5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/f3e314cc-e878-49b9-b6f5-c4abfa896002%40googlegroups.com.
I don’t see a applescript to make Quicktime playback in slowmo,
tell application "QuickTime Player"
set the rate of the front document to 0.3
end 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 a topic in the Google Groups "QLab" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qlab/euCS9hYieaY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/dd702d3f-0f65-499d-9eb2-f2ee43e76179%40googlegroups.com.
tell application id "com.figure53.QLab.4" to tell front workspace
set myDropTime to action elapsed of cue 9--Cue 9 is a still image in a video cue that starts when I start the routine--Getting a strange number here. They seem to be going down? (0.1754570330003844)
set myDropsList to {}set end of myDropsList to myDropTimeset the q name of cue "drop1" to item 1 of myDropsList
set the q name of cue "drop2" to item 2 of myDropsList
set the q name of cue "drop3" to item 3 of myDropsList
end tell
tell application id "com.figure53.QLab.4" to tell front workspaceset myFirstReplay to the q name of cue "drop1" as number
--need to figure out how to convert the times collected in the previous script to meaningful times here.
say myFirstReplayset start time of cue "8" to myFirstReplayset end time of cue "8" to myFirstReplay + 1end tell