Hi, use one of these actions for the selected pad or shift+pad. You can also use one of the controller buttons as a switch with a long press.
slip_mode
While in slip mode, during loops hotcues or scratch, the play cursor will keep moving unaffected, and will resume from there after release
slip
activate or deactivate a global slip mode, that will save the position on "slip on" and resume where it should have been if untouched on "slip off", letting you do any scratch/loop/effect/etc in between
holding
execute different actions depending if the key is pressed for a long time or not: 'holding ? automix : mix_now'. you can specify the time ('holding 1000ms'), by default it's 500ms.
doubleclick
execute different actions depending if the key is pressed twice in a short period of time or not: 'doubleclick ? automix : mix_now'. you can specify the time between two presses ('doubleclick 1000ms'), by default it's 300ms.
That's why I recommend holding, because doubleclick waits time ms before performing the first action after the first press. Holding has no delay for the first action.
In your mapping I see that doubleclick clones decks, so if you don't use that you can use those buttons.
This way, loading of tracks will be instantaneous, and holding for 100ms will switch to sleep mode.
<map value="LOAD" action="holding 100ms ? slip_mode : load" />
If there is no voice prompt after switching sleep modes, type the actions below.
<map value="LOAD" action="holding 100ms ? slip_mode & slip_mode on ? deck all show_text "# slip on " 40ms : deck all show_text "# slip off " 40ms : load" />
Greetings and good luck, Zenek