Hi !
I'm using 'Midi Designer' for Ipad as Midi controler for my Virtual DJ
I set a button for each of my effect with a slider for the volume and everything work fine.
Now, I want to create button to activate a specific effect : Deck 1 Effect 'Cut' Active
It didn't work as I need to add "on" or "off" at the end of the line to turn on or off the effect. This way, I need to create 2 buttons to have On/Off option ... I try to find a way to have the same button thurn on/off effect as it suppose to do !!
Thanks !
I'm using 'Midi Designer' for Ipad as Midi controler for my Virtual DJ
I set a button for each of my effect with a slider for the volume and everything work fine.
Now, I want to create button to activate a specific effect : Deck 1 Effect 'Cut' Active
It didn't work as I need to add "on" or "off" at the end of the line to turn on or off the effect. This way, I need to create 2 buttons to have On/Off option ... I try to find a way to have the same button thurn on/off effect as it suppose to do !!
Thanks !
Mensajes Wed 24 Apr 13 @ 5:48 pm
the scripting engine may be case sensitive. I have never used capitals.. anyway this is the correct script for a midi button that sends an message when you press and another when you release
deck 1 effect 'cut' active
if you want it temporarily activated use this
deck 1 effect 'cut' active while_pressed
deck 1 effect 'cut' active
if you want it temporarily activated use this
deck 1 effect 'cut' active while_pressed
Mensajes Wed 24 Apr 13 @ 6:02 pm
Thanks synthet1c !
I try your suggestion but it's not working... May be it's a 'Midi Designer' issue ...
I try your suggestion but it's not working... May be it's a 'Midi Designer' issue ...
Mensajes Wed 24 Apr 13 @ 6:16 pm
try running it through midi trace and see what results it gives you.
Specifically you want to make sure a line of code is added when you touch the screen and another is added when you release. the code output should look something like this for a single button.
93 0E 7F 00
93 0E 00 00
Specifically you want to make sure a line of code is added when you touch the screen and another is added when you release. the code output should look something like this for a single button.
93 0E 7F 00
93 0E 00 00
Mensajes Wed 24 Apr 13 @ 6:50 pm
No the scripting engine itself it's not case sensitive.
However please ensure that you create/define a BUTTON and not a SWITCH
However please ensure that you create/define a BUTTON and not a SWITCH
Mensajes Thu 25 Apr 13 @ 3:02 am
Add the word (toggle) to the end. I was having the same problem over the weekend and was able to map my trigger finger to turn on and off effects with one button
Mensajes Thu 25 Apr 13 @ 8:17 am
Hectic2o wrote :
Add the word (toggle) to the end. I was having the same problem over the weekend and was able to map my trigger finger to turn on and off effects with one button
Thanks a lot Hectic2o !! It was the solution for me !!!
Mensajes Mon 29 Apr 13 @ 9:01 pm