is there a way to clear all cues with just one button or be able to set my cue and delete the cue with the same button?
Posted Wed 26 Feb 14 @ 9:50 pm
no not really. but you can delete all cues the hard way
delete button:
delete_cue 1 & delete_cue 2 & delete_cue 3 & delete_cue 4 & delete_cue 5 & ect...
To answer your second question you can set and delete a cue with the same button but it will change the behaviour to only fire the cue point when the button is released, so it's not ideal. But using holding you can make it so if you hold the button for over half a second it will delete otherwise it will fire on realease
cue button:
holding ? delete_cue 1 : hot_cue 1
a better way to do it is to have a dedicated shift button to handle the switching.
shift button:
set 'shift' while_pressed & var 'shift' ? blink 300ms : off
cue button:
var 'shift' ? delete_cue 1 : hot_cue 1
[level professional edition user]
delete button:
delete_cue 1 & delete_cue 2 & delete_cue 3 & delete_cue 4 & delete_cue 5 & ect...
To answer your second question you can set and delete a cue with the same button but it will change the behaviour to only fire the cue point when the button is released, so it's not ideal. But using holding you can make it so if you hold the button for over half a second it will delete otherwise it will fire on realease
cue button:
holding ? delete_cue 1 : hot_cue 1
a better way to do it is to have a dedicated shift button to handle the switching.
shift button:
set 'shift' while_pressed & var 'shift' ? blink 300ms : off
cue button:
var 'shift' ? delete_cue 1 : hot_cue 1
Posted Wed 26 Feb 14 @ 10:03 pm