On 14 Feb 2020, at 13:03, Jean-Etienne Bettler <aroo...@gmail.com> wrote:
hi
you could use an app or a simple bash script to emulate a midi signal (like a note) with any key from your keyboardin this script I do the exact opposite, generating specific keys with midi note. I’m sure the opposite is possible.cheers
--
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/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/4A7E7FF9-5350-47AF-847C-2207F8E43D7A%40gmail.com.
<midi-to-keys>
----
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/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/541d1105-8655-4df3-bcb4-37755fda324a%40googlegroups.com.
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/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/4A7E7FF9-5350-47AF-847C-2207F8E43D7A%40gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/ECF86CF0-AED0-4629-806B-CC0C6A637ACD%40theatre.support.
On 14 Feb 2020, at 13:46, Jean-Etienne Bettler <aroo...@gmail.com> wrote:
I suck with AppleScript but would it be possible to simply create a script cue triggered by a key that will generate a note on?
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/6EB81D9D-17F3-4B31-AC42-3722D3FA2890%40gmail.com.
On 14 Feb 2020, at 13:46, Jean-Etienne Bettler <aroo...@gmail.com> wrote:
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/EA229BBE-9560-4D06-89D0-0E26FEC56FBF%40mac.com.
--Uncheck run in separate process
--set post wait of this cue to a large value
-- set second trigger of this cue to hard stop and restart
set thelight to 1
set thelevel to 100 --level to bump to
set mycue to "1" --cue number of this cue --used as alternative to finding the cue number of me in tell Qlab block in attempt to speed things up.
tell application id "com.figure53.QLab.4" to tell front workspace
set theflag to notes of cue mycue
--set mycue to last item of (cues whose running is true and q type is "script") -- find cue number of me
if theflag = "0" then
set myOSC to ("/dashboard/setLight " & thelight as string) & " " & thelevel as string
do shell script "echo " & myOSC & " | nc -u -w 0 127.0.0.1 53535"
set the notes of cue mycue to "1"
else
set myOSC to ("/dashboard/setLight " & thelight as string) & " 0"
do shell script "echo " & myOSC & " | nc -u -w 0 127.0.0.1 53535"
set the notes of cue mycue to "0"
stop cue mycue
end if
end tell
