Love your reply Synth.
I would have just said "yes" :)
Keith
I would have just said "yes" :)
Keith
Posté Sat 13 Apr 13 @ 2:29 am
tried to change this but i just mess up everything
Knobs:
FX SEL: var '$shift' ? effect 1 slider 2 : effect 1 slider 1
FX_PARAM1: var '$shift' ? effect 2 slider 2 : effect 2 slider 1
FX_PARAM2: var '$shift' ? effect 3 slider 2 : effect 3 slider 1
FX_PARAM3: var '$shift' ? effect 4 slider 2 : effect 4 slider 1
i want fx select to select thru the loaded effect slots. and the three parameters knobs to control the sliders for that selected effect. like if i press the fx sel button until i reach slot 4 which is loaded with flanged loop out which has 4 sliders so the three parameter knobs control the first three sliders. still if i turn fx sel while on the effect slot i still want to be able to choose the effect i want in a certain slot.
Knobs:
FX SEL: var '$shift' ? effect 1 slider 2 : effect 1 slider 1
FX_PARAM1: var '$shift' ? effect 2 slider 2 : effect 2 slider 1
FX_PARAM2: var '$shift' ? effect 3 slider 2 : effect 3 slider 1
FX_PARAM3: var '$shift' ? effect 4 slider 2 : effect 4 slider 1
i want fx select to select thru the loaded effect slots. and the three parameters knobs to control the sliders for that selected effect. like if i press the fx sel button until i reach slot 4 which is loaded with flanged loop out which has 4 sliders so the three parameter knobs control the first three sliders. still if i turn fx sel while on the effect slot i still want to be able to choose the effect i want in a certain slot.
Posté Sat 13 Apr 13 @ 7:23 am
still cant get this to act right guess ill just adapt....but thanks everybody.
Posté Sun 14 Apr 13 @ 2:08 pm
you need to think past the knobs and incorporate a couple of shifts to get that sort of functionality. What I would do is have the effect activation buttons set a shift that changes the effect select knob eg
button 1
var '$shift' ? set 'fx_sel' 0 & var 'fx_sel' 0 ? blink : off : effect 1 active
button 2
var '$shift' ? set 'fx_sel' 1 & var 'fx_sel' 1 ? blink : off : effect 2 active
button 3
var '$shift' ? set 'fx_sel' 2 & var 'fx_sel' 2 ? blink : off : effect 3 active
then on the select encoder
var 'fx_sel' 1 ? effect 2 select : var 'fx_sel' 2 ? effect 3 select : effect 1 select
that should make it so the selected effects led should flash when you hold the shift button so you know what the software will be doing when you turn the encoder
If you want it so that the only way to change slots 2 & 3 is that you hold shift "it means you will have to see the flashing led" use this instead
var '$shift' ? var 'fx_sel' 1 ? effect 2 select : var 'fx_sel' 2 ? effect 3 select : effect 1 select : effect 1 select
button 1
var '$shift' ? set 'fx_sel' 0 & var 'fx_sel' 0 ? blink : off : effect 1 active
button 2
var '$shift' ? set 'fx_sel' 1 & var 'fx_sel' 1 ? blink : off : effect 2 active
button 3
var '$shift' ? set 'fx_sel' 2 & var 'fx_sel' 2 ? blink : off : effect 3 active
then on the select encoder
var 'fx_sel' 1 ? effect 2 select : var 'fx_sel' 2 ? effect 3 select : effect 1 select
that should make it so the selected effects led should flash when you hold the shift button so you know what the software will be doing when you turn the encoder
If you want it so that the only way to change slots 2 & 3 is that you hold shift "it means you will have to see the flashing led" use this instead
var '$shift' ? var 'fx_sel' 1 ? effect 2 select : var 'fx_sel' 2 ? effect 3 select : effect 1 select : effect 1 select
Posté Sun 14 Apr 13 @ 3:35 pm
ok that screwed everything up... if anyone is familiar with the djc 4 fron stanton please help me explain the mapping im looking for all i want the effect button to do is activate the effect in its slot...i think i have that already. the fx select nob on my c60 has two functions. in the mapper when i push it down says fx_sel and when i turn it it says enc_fx_sel. so when i push it i want it to scroll the 4 effect SLOTs. when i turn it i want to be able to change what effect is in that selected slot. the three parameter knobs only turn so those will change the parameters of the selected effect. i use the mini scratch skin.
Posté Mon 15 Apr 13 @ 8:54 am
<map value="FX_SEL" action="cycle "FXSlot" 3" />
is this a valid command if not which characters need to be changed
its from the .xml from the stanton djc.4
is this a valid command if not which characters need to be changed
its from the .xml from the stanton djc.4
Posté Mon 15 Apr 13 @ 1:01 pm
try ' instead, not sure why you are messing around with the XML file though, the mapper changes everything back to readable text.
<map value="FX_SEL" action="cycle 'FXSlot' 3" />
If I am ever messing with an XML I always use ' anyway as they don't clash with the quotation marks and you can easily do a replace all [CTRL+H] to convert to english and back again.
<map value="FX_SEL" action="cycle 'FXSlot' 3" />
If I am ever messing with an XML I always use ' anyway as they don't clash with the quotation marks and you can easily do a replace all [CTRL+H] to convert to english and back again.
Posté Mon 15 Apr 13 @ 1:44 pm
im not messing with the xml im using the djc.4 xml to help me get the C60 mapping right...but i just cant wrap myself around vdj script. Hoping someone could help me. But it seems like no one can...
Posté Mon 15 Apr 13 @ 7:16 pm
synthet1c wrote :
try ' instead, not sure why you are messing around with the XML file though, the mapper changes everything back to readable text.
<map value="FX_SEL" action="cycle 'FXSlot' 3" />
If I am ever messing with an XML I always use ' anyway as they don't clash with the quotation marks and you can easily do a replace all [CTRL+H] to convert to english and back again.
<map value="FX_SEL" action="cycle 'FXSlot' 3" />
If I am ever messing with an XML I always use ' anyway as they don't clash with the quotation marks and you can easily do a replace all [CTRL+H] to convert to english and back again.
"FX_SEL" action="cycle 'FXSlot' 3" is this what i right way to put it in the action learn box
Posté Mon 15 Apr 13 @ 7:19 pm
in regards to
I have tried to help you, I even tried to educate you so you could do it yourself, that mapping should be fine. I put it down to user error. I figured it out on my own so I'm sure you can too.
just use this bit apostrophises, quotation marks and ampersands are special characters in XML
cycle 'FXSlot' 3
and pay attention to where it says syntax error, it will show you where the problem lies..
I'm out. good luck with it
Djratedxxx919 wrote :
Hoping someone could help me. But it seems like no one can...
I have tried to help you, I even tried to educate you so you could do it yourself, that mapping should be fine. I put it down to user error. I figured it out on my own so I'm sure you can too.
just use this bit apostrophises, quotation marks and ampersands are special characters in XML
cycle 'FXSlot' 3
and pay attention to where it says syntax error, it will show you where the problem lies..
I'm out. good luck with it
Posté Mon 15 Apr 13 @ 7:36 pm
synthet1c wrote :
in regards to
I have tried to help you, I even tried to educate you so you could do it yourself, that mapping should be fine. I put it down to user error. I figured it out on my own so I'm sure you can too.
just use this bit apostrophises, quotation marks and ampersands are special characters in XML
cycle 'FXSlot' 3
and pay attention to where it says syntax error, it will show you where the problem lies..
I'm out. good luck with it
Djratedxxx919 wrote :
Hoping someone could help me. But it seems like no one can...
I have tried to help you, I even tried to educate you so you could do it yourself, that mapping should be fine. I put it down to user error. I figured it out on my own so I'm sure you can too.
just use this bit apostrophises, quotation marks and ampersands are special characters in XML
cycle 'FXSlot' 3
and pay attention to where it says syntax error, it will show you where the problem lies..
I'm out. good luck with it
Dont get me wrong i appreciate every reply...my frustration is more mad at me. I can rip apart and custom build any pc/laptop but you put code and programming in my face im lost. But i do thank you.
Posté Mon 15 Apr 13 @ 8:24 pm
Hi, maybe you should really read the wiki about vdjscript, i understand that At first it seems overwhelming but it isnt that hard To understand. Pleasy reply once you habe read and understood the wiki. If there are still confusions wie can surely work them out.
http://www.virtualdj.com/wiki/VDJscript.html
http://www.virtualdj.com/wiki/VDJscript.html
Posté Mon 15 Apr 13 @ 10:06 pm
i do read it but i dont get it all the time, so im asking for help. reminds me of the horrible time i had in ms-dos in high school. guess i got to mess it up to learn how to fix it. switch to tcmania skin and it seems to be a little better. i can scroll the fx slots so maybe it was the skin. didnt know a certain skin might not allow certain actions but im learning.
Posté Tue 16 Apr 13 @ 9:55 am
ok almost there, i think it was the skin. ok just cant get the fx select to switch through the 3 effect slots when i press it down. And the led for the fx buttons 1,2 and 3 stay on when i press it and never goes off. I want them to go off when the effects stop or i press to disengage the effect.
Posté Tue 16 Apr 13 @ 10:22 am
Ok got the led's right got the effect button and parameters right. This is all i need help doing is get effect sel button on the left to scroll select through the left 3 effect slots and the one on the right to do the same on right to do the same on the 3 effect slots on the rightside.
Posté Tue 16 Apr 13 @ 8:23 pm
hel0 friends i have just modified my cdj 100s into usb one... can anyone help me how to map in virtual dj....in my virtual dj i don't have simple midi wrapper... how to get it?????please help me
.....\
.....\
Posté Wed 08 May 13 @ 3:03 pm
Please do not hijack topics by posting a message or question that is not related in any way.
Your question has nothing to do with mapping the Voxoa C60.
To open your own new topic, please click on the pen and paper icon at the top of the forum topic list page.
You should also preferably ask hardware related questions in the hardware technical support forum: http://www.virtualdj.com/forums/31/Hardware_Technical_Support.html
Your question has nothing to do with mapping the Voxoa C60.
To open your own new topic, please click on the pen and paper icon at the top of the forum topic list page.
You should also preferably ask hardware related questions in the hardware technical support forum: http://www.virtualdj.com/forums/31/Hardware_Technical_Support.html
Posté Wed 08 May 13 @ 4:57 pm
Ok im back with another mapping question. Ok i haved mapped my cue-play button to be my beat-tap button how do i get it to blnk with the sync like "the sync-button". also after i have mapped my effect buttons how do i get the leds work also.
Posté Tue 14 May 13 @ 1:47 am
Map the LED of the cue-play button separately to the action: sync (You will need to add this LED if it's not already present - Click + to add, then choose the appropriate LED in the drop list of keys.)
The FX button LED's should automatically light depending on the function that's mapped to them (E.g: Effect mapped to them should light the button when the effect is active.)
The FX button LED's should automatically light depending on the function that's mapped to them (E.g: Effect mapped to them should light the button when the effect is active.)
Posté Tue 14 May 13 @ 6:59 am