I would like to map a button on my BCR2000 to create a new cue point when pressed. This means that if there are already 4 cue points, pressing this button creates cue point 5. If there are 0 cue points, pressing this button creates cue point 1. And so on.
Things I've tried
- cue - doesn't create new cue points except the first one
- hot_cue - same as above
- variables - can't pass a variable as a parameter into a command
- Button value increment on BCR2000 - no way to reset value
Is this possible in VDJ script with only 1 button? I'm out of ideas
Things I've tried
- cue - doesn't create new cue points except the first one
- hot_cue - same as above
- variables - can't pass a variable as a parameter into a command
- Button value increment on BCR2000 - no way to reset value
Is this possible in VDJ script with only 1 button? I'm out of ideas
Posted Sun 24 Nov 13 @ 12:03 pm
There's no action to be able to do this, but you could try something like cue_select +1 & hot_cue ? nothing : set_cue
This increments the current selected cue point by 1 and then sets the cue point if not already set. However, depending on the last cue point that you used, you may need to press it several times to make it actually set a cue.
Another alternative is something like:
hot_cue 1 ? hot_cue 2 ? hot_cue 3 ? hot_cue 4 ? hot_cue 5 ? hot_cue 6 ? hot_cue 7 ? hot_cue 8 ? hot_cue 9 ? hot_cue 10 ? nothing : set_cue 10 : set_cue 9 : set_cue 8 : set_cue 7 : set_cue 6 : set_cue 5 : set_cue 4 : set_cue 3 : set_cue 2 : set_cue 1
This would work with upto 10 cue points.
However, to be able to use any of the above as well as the BCR2000 outside of the 20 day full Pro trial, you will need to upgrade to the full VirtualDJ Professional at a discount. The version that you have now will only work with a Numark N4.
This increments the current selected cue point by 1 and then sets the cue point if not already set. However, depending on the last cue point that you used, you may need to press it several times to make it actually set a cue.
Another alternative is something like:
hot_cue 1 ? hot_cue 2 ? hot_cue 3 ? hot_cue 4 ? hot_cue 5 ? hot_cue 6 ? hot_cue 7 ? hot_cue 8 ? hot_cue 9 ? hot_cue 10 ? nothing : set_cue 10 : set_cue 9 : set_cue 8 : set_cue 7 : set_cue 6 : set_cue 5 : set_cue 4 : set_cue 3 : set_cue 2 : set_cue 1
This would work with upto 10 cue points.
However, to be able to use any of the above as well as the BCR2000 outside of the 20 day full Pro trial, you will need to upgrade to the full VirtualDJ Professional at a discount. The version that you have now will only work with a Numark N4.
Posted Sun 24 Nov 13 @ 1:20 pm