11-07-2025, 03:27 PM
This is not a standard implemented function, but this is possible using the mappings. (slightly more complex than usual due to a little bug in the used mapping destinations, but it does work!)
Lets say you want to use the button combo 'STOP+CURSOR UP' to stop all now but keep the sequencer running. Your mapping would look like this:
In fact this is one possibility and the CALC FORC is needed due to the mini-bug. However it works perfectly.
Lets say you want to use the button combo 'STOP+CURSOR UP' to stop all now but keep the sequencer running. Your mapping would look like this:
Code:
00 EXT BUTN STOP > ---- ---- ---- Check if button STOP is pressed (pressed = true)
01 EXT BUTN CRUP > ---- ---- ---- Check if button Cursor UP is pressed (pressed = true)
02 CALC LAND 0001 > ---- ---- ---- Logical and checks if row 00 and 01 are both true (pressed)
03 SKIP 08 = 02=0 > ---- ---- ---- Skip the next 8 rows if row 02 was not true (skip if not both have been pressed)
04 CALC FORC =1=1 > TRCK TRK1 STOP Force a 1/true to the destination which does execute the Stop function for track 1
05 CALC FORC =1=1 > TRCK TRK2 STOP ...same as above for track 2 ...and so on for the other tracks
06 CALC FORC =1=1 > TRCK TRK3 STOP
07 CALC FORC =1=1 > TRCK TRK4 STOP
08 CALC FORC =1=1 > TRCK TRK5 STOP
09 CALC FORC =1=1 > TRCK TRK6 STOP
0A CALC FORC =1=1 > TRCK TRK7 STOP
0B CALC FORC =1=1 > TRCK TRK8 STOPIn fact this is one possibility and the CALC FORC is needed due to the mini-bug. However it works perfectly.
PLEASE use the search function if something have been asked or discussed before.
Every (unnessesary) forum support means less time to develop! But of course, i am here to help!
Every (unnessesary) forum support means less time to develop! But of course, i am here to help!

