Hi,
following situation: pressing my midi footswitch starts recording. Hitting the footswitch again, recording stops as wanted, but transport (play) keeps on running. I want to stop playback when hitting stop recording. In detail: How to toggle record and play simultaneously with one toggle switch. Has anyone found out how to do that?
Thanks
Hi,
Did you use MIDI Remote Mapping Assistant? Iām afraid, this is not possible via Mapping Assistant. You can do so on writing JavaScript code. In fact, you have to send two messages:
- Record
- Stop
So in the JavaScript code, I would:
- Test if Play is enabled.
ā If no, send Record command.
ā if yes, send Stop command.