Script changed a bit to workaround the jog wheel binding with the AI knob when in the Focused Quick Controls mode, something I’ve noticed just on Macs, but you never know. At the same time, this workaround (again on Macs) solved an issue with mute/solo using the jog wheel, when in Play-Held mode.
I’ve added an option to use the Tempo button for other binding than the default one, which is the Tap-Tempo (and fine tuning using the jog wheel) used by Korg and which I’ve synced to Cubase. We can now deactivate this option by opening the mapOfGeneralSettings.js file in a text editor, and then
- search for this line:
tapTempoActive: 1
-
replace 1 with a 0:
tapTempoActive: 0 -
save this file and reload the script.
The binding of the Tempo button when the Tap-Tempo is inactive is located in the mapOfBindings.js file, and now defaults to the command Transport→Locate Previous Marker.
We can change it, by searching the line:
var tempoBinding=[‘Transport’, ‘Locate Previous Marker’]
and then replacing the two elements with the ones we want and can be found here (we can single click on a command snippet in order for it to by copied, and then paste it in our code replacing the content of the brackets):