Home Forums Logelloop 6 (English spoken) Modular looper bug report Reply To: Modular looper bug report

#6959
Patrick KiznyPacocreative
Participant

Hey,

Here’s a bit of a behaviour discrepancy I discovered.
Korpus recording, via UI & built-in midi mapping:

Press Rec - stars recording
Press Rec and hold - cancels recording and clears the buffer

This works as expected.
However when I try to mirror this in macro scripting:

// Record seems to work better via bult-in midi control
CaseBranch "K Rec"
//    Message "Record"
	// Record current looper / group
	InsertSendMessage dt1 1 Record
	BreakCaseBranch

CaseBranch "K Rec_longpress"
//    Message "Record Clear"
	// Clear current looper / group
//	InsertSendMessage dt1 1 Record // optional, tried to fix the issue
	InsertSendMessage dt1 1 Clear
	BreakCaseBranch

It does not bring expected behaviour.
It seems that Record status (in sync mode) goes from 0 -> 2 -> 1, and while trying to clear buffer in state 2, it does not really work as expected, I can’t stop and clear the recording, while it’s in blinking mode. Also not sure if I should be stopping rec additionally on clear. I tried, but it did not seem to help.

Is there any specific routine I need to do to mirror the built-in behaviour, or we arrived at some limitations?