Most of my songs have lots of CUE positions, and as the song progresses, I need to know which cue number it has passed.
I would like to have my midi controller LED turn on based on the last known cue position of the song. Looks like there is a script command called "getlastcue" but I do not know how to use it for this example.
I would like to have my midi controller LED turn on based on the last known cue position of the song. Looks like there is a script command called "getlastcue" but I do not know how to use it for this example.
geposted Wed 02 Nov 11 @ 10:26 pm
phanton will be implimenting a function to allow this in his watchdog plugin chek it out
http://www.virtualdj.com/forums/143896/VirtualDJ_Plugins/_NEW___OTHER__WatchDog_v1_0_Alpha.html
it should work like this if nothing changes
cue 1 led - var 'WD_LPC' 1 ? on : off
cue 2 led - var 'WD_LPC' 2 ? on : off
cue 3 led - var 'WD_LPC' 3 ? on : off
cue 4 led - var 'WD_LPC' 4 ? on : off
http://www.virtualdj.com/forums/143896/VirtualDJ_Plugins/_NEW___OTHER__WatchDog_v1_0_Alpha.html
it should work like this if nothing changes
cue 1 led - var 'WD_LPC' 1 ? on : off
cue 2 led - var 'WD_LPC' 2 ? on : off
cue 3 led - var 'WD_LPC' 3 ? on : off
cue 4 led - var 'WD_LPC' 4 ? on : off
geposted Thu 03 Nov 11 @ 1:16 am
this would be better though... it will turn the light on if the hot cue is set, but blink if that cue was the one last past, if neither are true the led will be off.
cue 1 led - var 'WD_LPC' 1 ? blink 400ms : hot_cue 1 ? on : off
cue 2 led - var 'WD_LPC' 2 ? blink 400ms : hot_cue 2 ? on : off
cue 3 led - var 'WD_LPC' 3 ? blink 400ms : hot_cue 3 ? on : off
cue 4 led - var 'WD_LPC' 4 ? blink 400ms : hot_cue 4 ? on : off
cue 1 led - var 'WD_LPC' 1 ? blink 400ms : hot_cue 1 ? on : off
cue 2 led - var 'WD_LPC' 2 ? blink 400ms : hot_cue 2 ? on : off
cue 3 led - var 'WD_LPC' 3 ? blink 400ms : hot_cue 3 ? on : off
cue 4 led - var 'WD_LPC' 4 ? blink 400ms : hot_cue 4 ? on : off
geposted Thu 03 Nov 11 @ 2:30 am
I need the plug in to do this? Rather, since the plugiin doesn't support it yet, then I cannot accomplish this at this moment?
geposted Thu 03 Nov 11 @ 6:53 am
only for about another week...
geposted Thu 03 Nov 11 @ 2:38 pm
I think this will "half-solve" my problem. I'm using VDJ as a morph between VDJ and Ableton. With 99 decks, I'm loading decks with loops, synths, vocals, etc, which all have specific cues that I like to use to build songs on the fly. It works great actaully, I just get lost without more information.
I wish there was a way to display the cue# under the cue sprite by editing the skin as well. I looked all over and found a way to use a textzone to display cue #s, but to line them up with the cue sprites is impossible...
I wish there was a way to display the cue# under the cue sprite by editing the skin as well. I looked all over and found a way to use a textzone to display cue #s, but to line them up with the cue sprites is impossible...
geposted Fri 04 Nov 11 @ 9:24 pm