--
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/0addd4bf-beb9-4385-b1d1-9ecbab7d4491%40googlegroups.com.
--
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/1ae5c007-4cf5-4822-9f78-f2f2a2378c35%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/CAJ0FTEJJGZVQWPTkf%3DgvfeT%3DKNmAF7s_82dnbVu774Spz%2BEqZQ%40mail.gmail.com.
property letters : "ABCDEFGHIJKLMNOPQRSTUVWXYZ" --you can omit letters from the list here
set thecount to count of letters
tell application id "com.figure53.QLab.4" to tell front workspace
set thecues to cues whose q number is not "" --ignore cues with no q number
set themultiplier to ""
repeat with eachcue in thecues
try --ignore non numeric q numbers
set thecuenumber to q number of eachcue as number
set themodnumber to round of (thecuenumber mod thecount) rounding down
if themodnumber = 0 then set themodnumber to thecount
set thecueinteger to round of thecuenumber rounding down
set thecuedecimal to (thecuenumber - thecueinteger)
if thecuedecimal = 0 then set thecuedecimal to ""
set themultiplier to round of (((q number of eachcue) - 1) / thecount) rounding down
if themultiplier = 0 then
if thecuedecimal > 0 then
set thecuedecimal to thecuedecimal as text
set AppleScript's text item delimiters to {"."}
set themultiplier to "." & text item 2 of thecuedecimal
set AppleScript's text item delimiters to {""}
else
set themultiplier to ""
end if
else
set themultiplier to (themultiplier + thecuedecimal)
end if
set thecuetext to text (themodnumber) of letters
--for testing change q number below to q name see the result in Q column
set the q number of eachcue to thecuetext & themultiplier as string
end try
end repeat
end tell
Back in the day I was taught to use letters for my sound cues as well because it helped the stage manager differentiate between lights and sound. I work at a school and I have my qlab computer hooked up through an audio interface and a midi cable to my lighting console. I know pretty much use Numbers because if I have the same Que number in qlab as the lighting console they will trigger together. My stage managers don’t even call sound cues anymore because it all gets triggered from the lighting console. Just a thought and a different way to do it. Or you can set it up where you can have qlab trigger the lighting console as well.Jason
On Tue, Sep 10, 2019 at 12:44 PM MrDJMedina <mrdjm...@gmail.com> wrote:
All great points.--I haven't had a problem yet *knocks on wood*micpool - if I need to add a cue between say A and B I would use A.1, A.2, A.3... If the cue list is long enough (over 52) I switch over to Letter + Number (ie. A1, B1, C1.... A2, B2, C2... A3, B3, C3)Chris - I tend to skip those cue letters. Also cue AK (I work at a College), Cue O (not 0; Zero). As far as scripting I would set it up so I could just copy and paste it into a new workspace.Either way I would always put the Letter first.DJ
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 ql...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/1ae5c007-4cf5-4822-9f78-f2f2a2378c35%40googlegroups.com.