make front workspace type "Group"
set newCue to last item of (selected of front workspace as list)
set mode of newCue to start_first--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
TikTok: https://www.tiktok.com/@QLab.app
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/7a562349-6927-470e-b947-7f7b59517e39n%40googlegroups.com.
tell application id "com.figure53.QLab.5"
tell front workspace
repeat with i from 0 to 50
make type "Group"
set newCue to last item of (selected as list)
set mode of newCue to playlist
set playlist crossfade duration of newCue to i / 10
set actualValue to playlist crossfade duration of newCue
log i / 10 & " > " & actualValue
end repeat
end tell
end tell
(*2.8, > , 3.0*)
(*2.9, > , 3.0*)
(*3.0, > , 3.0*)
(*3.1, > , 3.1*)
(*3.2, > , 3.2*)
--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
TikTok: https://www.tiktok.com/@QLab.app
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/462d2973-6003-4fec-a236-fad573ded4a7n%40googlegroups.com.
You know, I'm not familiar with shell script. But I try to learn it in the nearly future.
# when you are working in a workspace that loaded first after running the app
property theGroupMode : "timeline"
--——————————————————————-
# open Settings Window
tell application "QLab" to activate
tell application "System Events" to if not (exists (1st window whose title contains "Settings")) then keystroke "," using command down
# select 'Templates' row and 'mode' tab and select desired MODE
tell application "System Events" to tell (first application process whose bundle identifier is "com.figure53.QLab.5")
tell (first window whose description contains "settings")
try
tell (first row of table 1 of scroll area 1 whose accessibility description of UI element 1 is "Templates") to select
end try
tell (first button of group 1 of splitter group 1 whose description contains "mode") to click
tell application "System Events" to tell application process "QLab" to tell (first checkbox of group 1 of splitter group 1 of window 1 whose name = space & theGroupMode) to click
end tell
tell button "Done" of window 1 to click
end tell
--
Contact support anytime: sup...@figure53.com
User Group Code of Conduct: https://qlab.app/code-of-conduct/
Instagram: https://www.instagram.com/Figure53
TikTok: https://www.tiktok.com/@QLab.app
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/21ce4961-9f2b-4569-a1fd-a323d63fc392n%40googlegroups.com.