Hello and good afternoon. I have Vdj pro 8 and I do not remember in the software which command erases the Hot Cues I want. In my controller (Akiyama Quark SC) I have a button that looks like a "PAPER BIN" and if I pressed the paper and a number of Hot CUE (1,2,3...) that HOT CUE is deleted, but I erased the command and I do not remember what it was.
Do you know which command it is ?
Posted Fri 26 Feb 16 @ 8:16 pm
set 'var_delete_hot_cue' 1 while_pressed
Posted Fri 26 Feb 16 @ 8:30 pm
If you are using VirtualDJ 8, then you can always temporary go back to the "factory default" mapping and see (or copy-paste) the actions assigned to each key.
For the Akiyama Quark the keys are mapped by default as following :
DELETE
HOT_CUE_X_1
(replace X with the HotCue number of each key)
For the Akiyama Quark the keys are mapped by default as following :
DELETE
set 'var_delete_hot_cue' 1 while_pressed
HOT_CUE_X_1
var 'var_delete_hot_cue' ? delete_cue X : hot_cue X
(replace X with the HotCue number of each key)
Posted Fri 26 Feb 16 @ 10:28 pm
But sometimes I delete Hot cue 1, sometimes Hot Cue 2...
I am looking for a general command, to delete a random Hot Cue, according to Hot Cue I choose in that moment.
Do you understand?
I am looking for a general command, to delete a random Hot Cue, according to Hot Cue I choose in that moment.
Do you understand?
Posted Thu 03 Mar 16 @ 9:17 pm
What i meant by replacing X with the Hotcue number , i didnt mean of course to edit/replace on the fly :)
I meant that you need to assign all Hotcue buttons of yoru controller as
HOT_CUE_1 ---> var 'var_delete_hot_cue' ? delete_cue 1 : hot_cue 1
HOT_CUE_2 ---> var 'var_delete_hot_cue' ? delete_cue 2 : hot_cue 2
HOT_CUE_3 ---> var 'var_delete_hot_cue' ? delete_cue 3 : hot_cue 3
etc...
So if the DELETE button is assigned as above , the variable 'var_delete_hot_cue' will become true (1) as long as the DELETE button is pressed, and the HOTCUE buttons will execute the delete_cue action instead of the hot_cue.
I meant that you need to assign all Hotcue buttons of yoru controller as
HOT_CUE_1 ---> var 'var_delete_hot_cue' ? delete_cue 1 : hot_cue 1
HOT_CUE_2 ---> var 'var_delete_hot_cue' ? delete_cue 2 : hot_cue 2
HOT_CUE_3 ---> var 'var_delete_hot_cue' ? delete_cue 3 : hot_cue 3
etc...
So if the DELETE button is assigned as above , the variable 'var_delete_hot_cue' will become true (1) as long as the DELETE button is pressed, and the HOTCUE buttons will execute the delete_cue action instead of the hot_cue.
Posted Fri 04 Mar 16 @ 12:06 am
And how to Assign all variables HOT_CUes to the same button?
Posted Fri 04 Mar 16 @ 5:54 pm