Hi all
1) There is an option endOfSongWarning which will cause the software platter flash.
How can one map this feature to another LED or custom button. IE to have the controllers LED flash.
2) What script would return True if say the a Loop was 4 beats long?
and/or how to query the loop length.
1) There is an option endOfSongWarning which will cause the software platter flash.
How can one map this feature to another LED or custom button. IE to have the controllers LED flash.
2) What script would return True if say the a Loop was 4 beats long?
and/or how to query the loop length.
Mensajes Tue 15 Dec 20 @ 6:33 am
1) use " songpos_remain 20000ms ? blink : off" or similar
2) get_loop
or get_loop & param_equal 4 ? blink : on
but not directly get_loop 4 because "4" is the loop # in case of multiple loops
the alternative being
get_loop 0 4 ? blink : on
with 0 being "current loop"
2) get_loop
or get_loop & param_equal 4 ? blink : on
but not directly get_loop 4 because "4" is the loop # in case of multiple loops
the alternative being
get_loop 0 4 ? blink : on
with 0 being "current loop"
Mensajes Tue 15 Dec 20 @ 9:26 am
loop 4
Will be true if the loop is 4 beats long.
Mensajes Tue 15 Dec 20 @ 9:48 am
have to take a look at how "shift" key work with touchscreen; it locks when key was pressed ^^ this makes some action appear to work wrongly
(i.e.: current custom button is not updating on the fly)
(i.e.: current custom button is not updating on the fly)
Mensajes Tue 15 Dec 20 @ 10:01 am