Behringer CMD Studio 4a mapping help
Hey guys most of this is a continuation from the Behringer CMD line Review thread, so I’ll try and catch everyone up.
KingCast
[QUOTE]Hey guys, lookin for a little VDJ script help. I tweaked a few maps for the Studio 4a and Im pretty much settled on my latest one however i’m having a couple issues with mapping the leds correctly so I can get the proper feedback as to which functions I have activated and which ones I don’t.
Thanks in advance for any assistance and here is my script that I would need the corresponding led script for.
<map value=“LED_FX1” action=“? effect “backspin” active : effect “dsp_Distorter” active” />
<map value=“LED_FX2” action=“? effect “brake” active : effect “flanger” active” />
<map value=“LED_FX3” action=“? effect “FlangedLoopOut” active : effect “dsp_Reverb” active” />
Now currently this suits me very well the only problem is that when I engage any one of the 4 FX it turns all 4 FX buttons blue where I would very much like it to only turn the effect’s button i’m using to change color.
Also as a side project I’m trying to get the “keylock” button to blink to the music the same way the sync button does.
Thanks again![/QUOTE]
synthet1c
[QUOTE]where you have the condition, you are not querying anything, The way VDJScript works is like this
query ? action if true : action if false
for the query you need to ask something, that could be whether the effect is active, or if you are shifted or really anything.
Also the simplest way to make any modifications to your mapping is through the config menu, not in the XML file, as the mapping editor will convert special characters of xml for you.
The simplest thing you could do without having to know how it was mapped is query if the effects are active eg.
effect ‘backspin’ active on ? on : effect ‘dsp_distorter’ active on ? on : off
effect ‘brake’ active on ? on : effect ‘flanger’ active on ? on : off
effect ‘flangedLoopOut’ active on ? on : effect ‘dsp_reverb’ active on ? on : off
effect active on ? blink 333ms : off
I also made LED four blink three times a second if any effect is active just to show you LED’s can easily be made to blink at set intervals.
And to make the keylock LED blink to be beatgrid, you would use ‘get beatgrid’. If you want the LED to blink on the bass drum you would use ‘sync’ for the LED.[/QUOTE]
KingCast
[QUOTE]Thanks synthet1c, This part of the map was contributed by some one else, I didn’t care that it looked weird because it worked, it’s set up so that fx assign is like a shift button for fx 1,2,3.
Here’s the whole map and again thanks in advance for the assistance
<?xml version="1.0" encoding="UTF-8"?> [/B][/SIZE][/QUOTE]synthet1c
KingCast
