I wish for a script to be able to delete remix points on the fly, like you can with regular hot cues, so that you can both add and remove remix points on the fly
For a hot cue button combined with the shift button that looks like this:
var '$shift' ? delete_cue 1 : hot_cue 1
The script for adding a remix point on the fly looks like this
hot_cue 1 remix
So what I'm asking for is the ability to do something like this
var '$shift' ? delete_cue 1 remix : hot_cue 1 remix
For a hot cue button combined with the shift button that looks like this:
var '$shift' ? delete_cue 1 : hot_cue 1
The script for adding a remix point on the fly looks like this
hot_cue 1 remix
So what I'm asking for is the ability to do something like this
var '$shift' ? delete_cue 1 remix : hot_cue 1 remix
Mensajes Mon 17 Oct 16 @ 9:33 pm
Try deleting by name
delete_cue "remix 1"
delete_cue "remix 1"
Mensajes Mon 17 Oct 16 @ 11:19 pm
Thank you. It works :)
If possible it would still be great to be able to do it by position, since once in a while they may have none-default names.
Not a big issue though
If possible it would still be great to be able to do it by position, since once in a while they may have none-default names.
Not a big issue though
Mensajes Tue 18 Oct 16 @ 8:55 am