Adion,
are you suggesting that i can launch VDJ first and somehow pass the MIDI signal to Bome with a VDJ script? if i launch Bome after VDJ then the MIDI signal from the Rane Twelve does not make it to Bome. unless what you are suggesting is something different altogether
are you suggesting that i can launch VDJ first and somehow pass the MIDI signal to Bome with a VDJ script? if i launch Bome after VDJ then the MIDI signal from the Rane Twelve does not make it to Bome. unless what you are suggesting is something different altogether
Posted Mon 20 Jan 20 @ 7:38 pm
Launchkey Mini 25, i need script for it.
Description and task: this Device has 25 keys, and THE keycue pads also have 25 keys. You need a script that would work exactly as a KEYCUE but when you click not on the Pads but on the keys. Can anyone give advice or to send the finished versions of the scripts?!
Scripts (commands) in the photo do not work as it should!
I describe the task: for example, I upload a Sample (piano melody or similar) to the d deck, and I need to play a new melody from this sample, but it is convenient for me to play with the Launchkey piano, but not with the pads, because there are only 8 of them on my Reloop Neon and only 16 on my Midi Fighter 3D, if you do not switch the banks.
In General, i need 25 Launchkey keys to launch a KEYCUE. In one parameter, it works, but not as it should.
Posted Fri 14 Feb 20 @ 6:05 pm
I'm not really following what you have as scripts there, I don't think keycue [value] is a real script
do these do what you want?
key -12 & hot_cue
......
key 0 & hot_cue
.....
key +12 & hot_cue
do these do what you want?
key -12 & hot_cue
......
key 0 & hot_cue
.....
key +12 & hot_cue
Posted Sat 15 Feb 20 @ 4:46 am
locodog wrote :
I'm not really following what you have as scripts there, I don't think keycue [value] is a real script
do these do what you want?
key -12 & hot_cue
......
key 0 & hot_cue
.....
key +12 & hot_cue
do these do what you want?
key -12 & hot_cue
......
key 0 & hot_cue
.....
key +12 & hot_cue
Thanks really, but....
This script (command) is also not correct, because it changes plus or minus (key) relative to the current sound of the key, ie here the mathematical part, if you first press key -7 and then key -5 it will sound like two keys pressed on the next one and immediately go to -11, and you need to work exactly as a KEYCUE and each of the 25 keys changed the key (key) relative to the original value of the key.
Posted Sat 15 Feb 20 @ 8:05 am
get_constant -1 & param_cast 'absolute' & key
.....
get_constant -12 & param_cast 'absolute' & key
.....
get_constant -12 & param_cast 'absolute' & key
Posted Sat 15 Feb 20 @ 8:12 am
You could also just have a look at the keycue pad page if that's what you're after, and you'll see that it uses keycue_pad
Posted Sat 15 Feb 20 @ 9:08 am
Adion wrote :
You could also just have a look at the keycue pad page if that's what you're after, and you'll see that it uses keycue_pad
I have already used it, but most likely I did not correctly spell out the name of each pad, and the numbers there are available from 1 to 8, so you need to first give names to each of the 25 pads, then use the same 25 names for Launchkey
Posted Sat 15 Feb 20 @ 11:54 am
locodog wrote :
don't just requote, tell me what's happening
this is working, yet
get_constant +1 & param_cast 'absolute' & key & cue
Posted Sat 15 Feb 20 @ 6:35 pm
get_constant 3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue
get_constant -3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue
get_constant -3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue
Posted Sat 15 Feb 20 @ 6:51 pm
locodog wrote :
get_constant 3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue
get_constant -3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue
get_constant -3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue
Thank U! All is working!
Posted Sun 16 Feb 20 @ 5:51 pm
Now there is a second task. Let's try to expand the possibilities.
We leave it as it is, and add the PRESS function, i.e. when holding one key and pressing the other one sequentially, it does not return to the CUE point, but continues to play according to the key of the next key.
Will it work, do you think?
We leave it as it is, and add the PRESS function, i.e. when holding one key and pressing the other one sequentially, it does not return to the CUE point, but continues to play according to the key of the next key.
Will it work, do you think?
Posted Sun 16 Feb 20 @ 5:56 pm
var '$isbgp' 0 ? get_constant -3 & param_cast 'absolute' & key & get_cue & param_cast & hot_cue & set '$isbgp' 1 while_pressed : get_constant -3 & param_cast 'absolute' & key
Posted Sun 16 Feb 20 @ 6:02 pm
May as well copy this in, [nothing to do with yours Zvook]
new casting types
param_cast 'relative'
param_cast 'absolute'
it fixes a bit of a script maths blindspot, limitations for casting that existed when actions could accept either a relative or an absolute value, like goto can.
before a positive number variable was always seen as an absolute, and a negative was always seen as relative and not much could be done without some serious script gymnastics. now you can tell the script, relative or absolute.
absolute has most uses when the number you are dealing with is negative
relative has most uses when the number you are dealing with is positive
get_constant 1 & param_cast 'absolute' & goto
this will go to beat 1 [the one after the zero/first beat]
get_constant 1 & param_cast 'relative' & goto
this will go just one beat forward where ever you are at the time
other useful things it opens up, incrementing things
set 'a' 0.1 & get_var 'a' & param_cast 'absolute' & level
will set the level at 0.1, [because a==0.1 is absolute already you don't need to really include it, same result as set 'a' 0.1 & get_var 'a' & param_cast & level]
set 'a' 0.1 & get_var 'a' & param_cast 'relative' & level
will increase the level by, 0.1
new casting types
param_cast 'relative'
param_cast 'absolute'
it fixes a bit of a script maths blindspot, limitations for casting that existed when actions could accept either a relative or an absolute value, like goto can.
before a positive number variable was always seen as an absolute, and a negative was always seen as relative and not much could be done without some serious script gymnastics. now you can tell the script, relative or absolute.
absolute has most uses when the number you are dealing with is negative
relative has most uses when the number you are dealing with is positive
get_constant 1 & param_cast 'absolute' & goto
this will go to beat 1 [the one after the zero/first beat]
get_constant 1 & param_cast 'relative' & goto
this will go just one beat forward where ever you are at the time
other useful things it opens up, incrementing things
set 'a' 0.1 & get_var 'a' & param_cast 'absolute' & level
will set the level at 0.1, [because a==0.1 is absolute already you don't need to really include it, same result as set 'a' 0.1 & get_var 'a' & param_cast & level]
set 'a' 0.1 & get_var 'a' & param_cast 'relative' & level
will increase the level by, 0.1
Posted Sun 16 Feb 20 @ 6:12 pm
hello
I don't know how to start for this script : I want to map my 16pad controller (with rgb led) to sampler. I easily find the way to assign the color to sampler_pad.It works perfectly but now I want to say to VDJ "if this pad is playing change color of the pad AND also if it is trigger "hold" stay with this color and if trigger is "stutter" just make a momentary change of color...I don't know how to start with this....i started with a "while_pressed" on my button but it act like stutter and don't stay if it is hold :)
thanks in advance
fred
I don't know how to start for this script : I want to map my 16pad controller (with rgb led) to sampler. I easily find the way to assign the color to sampler_pad.It works perfectly but now I want to say to VDJ "if this pad is playing change color of the pad AND also if it is trigger "hold" stay with this color and if trigger is "stutter" just make a momentary change of color...I don't know how to start with this....i started with a "while_pressed" on my button but it act like stutter and don't stay if it is hold :)
thanks in advance
fred
Posted Sun 15 Mar 20 @ 9:31 am
break it into a bunch of queries
sampler_play 1 ? sampler_mode 1 'hold' ? COLOUR FOR HOLD : sampler_mode 1 'stutter' ? COLOUR FOR STUTTER : QUERIES FOR OTHER MODES : NOT PLAYING COLOUR
sampler_play 1 ? sampler_mode 1 'hold' ? COLOUR FOR HOLD : sampler_mode 1 'stutter' ? COLOUR FOR STUTTER : QUERIES FOR OTHER MODES : NOT PLAYING COLOUR
Posted Mon 16 Mar 20 @ 4:31 pm
thanks again locodog ;) i see clearer with this :)
Posted Mon 16 Mar 20 @ 8:42 pm
Hello,
I hope I am in the right section to post this.
I am using the Virtual Dj 8 official PRO Layout (Skin) with the 3 different Effects on each deck.
I am also usind a DDj SX 3 Controller.
I managed to use the FX buttons on the top left (top right) of my controller to turn the Effects On and Off, also using the knob on the controller to use the effect slider for the Strength of the effect.
The DDj SX3 has then another Knob for Pushing and spinning (FX Beats / FX BeatsPush) which I am using now for the Effect Slider 1.2 (length).
My plan is, to use the FX Beats knob to toggle between Effect slider 1.2 , 2.2, 2.3 (while pushing it) and then be able to use the Effect slider for length by turning /spinning the knob.
I hope I made myself clear, English is not my first language.
I tried all day, but I gave up now. I just switched from Serato to Virtual DJ ( also tried Traktor but it didnt work well). So far, I really really like VDJ.
I hope I am in the right section to post this.
I am using the Virtual Dj 8 official PRO Layout (Skin) with the 3 different Effects on each deck.
I am also usind a DDj SX 3 Controller.
I managed to use the FX buttons on the top left (top right) of my controller to turn the Effects On and Off, also using the knob on the controller to use the effect slider for the Strength of the effect.
The DDj SX3 has then another Knob for Pushing and spinning (FX Beats / FX BeatsPush) which I am using now for the Effect Slider 1.2 (length).
My plan is, to use the FX Beats knob to toggle between Effect slider 1.2 , 2.2, 2.3 (while pushing it) and then be able to use the Effect slider for length by turning /spinning the knob.
I hope I made myself clear, English is not my first language.
I tried all day, but I gave up now. I just switched from Serato to Virtual DJ ( also tried Traktor but it didnt work well). So far, I really really like VDJ.
Posted Fri 20 Mar 20 @ 1:10 pm
push
cycle 'beatPush' 3
dial
var 'beatPush' 0 ? effect_slider 1 2 : var 'beatPush' 1 ? effect_slider 2 2 : var 'beatPush' 2 ? effect_slider 3 2 : nothing
cycle 'beatPush' 3
dial
var 'beatPush' 0 ? effect_slider 1 2 : var 'beatPush' 1 ? effect_slider 2 2 : var 'beatPush' 2 ? effect_slider 3 2 : nothing
Posted Fri 20 Mar 20 @ 1:31 pm
AMAZING!!!
That just did it!
Thanks so much.
PS: Do you know, if its possible, to make a Turntable visible as same as in the starter or Essentials layout? I Played around with it but it gave me only errors.
I am going to buy Pro soon I think ( I have to with ddj sx - No Home Plus) and then I will choose " The thing I guess....but till then would cool to see some spinning vinyls)
That just did it!
Thanks so much.
PS: Do you know, if its possible, to make a Turntable visible as same as in the starter or Essentials layout? I Played around with it but it gave me only errors.
I am going to buy Pro soon I think ( I have to with ddj sx - No Home Plus) and then I will choose " The thing I guess....but till then would cool to see some spinning vinyls)
Posted Fri 20 Mar 20 @ 1:40 pm
user21540659 wrote :
to make a Turntable visible as same as in the starter or Essentials layout?
Currently thats only in Starter/Essential...
But will be some updates coming with extended options for those who want this and that ;-)
Posted Fri 20 Mar 20 @ 1:51 pm