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

#6792
Patrick KiznyPacocreative
Participant

Here’s what I figured out:

InsertSendMessage fx1 1 Group 1
WaitUserAction 
InsertSendMessage fx1 1 Group 2

This always works.

But this is where it seems to break
1. Set a random group (ex 5.) via UI dropdown
2. InsertSendMessage fx1 1 Group 1 – works
3. Set a random group again (ex. 3)
4. InsertSendMessage fx1 1 Group 1 – does not work anymore, as if it remembered it’s still in group 1
5. InsertSendMessage fx1 1 Group 2 – this will work again, because we’re setting a different group than the last one via macro

The specific case I’m working on is writing a macro that will put 4 loopers into one group after they were manually assigned to different groups

Current workaround that works to set 4 loopers to group 1:

	InsertSendMessage fx1 1 Group 2
	InsertSendMessage fx2 1 Group 2
	InsertSendMessage fx3 1 Group 2
	InsertSendMessage fx4 1 Group 2

	InsertSendMessage fx1 1 Group 1
	InsertSendMessage fx2 1 Group 1
	InsertSendMessage fx3 1 Group 1
	InsertSendMessage fx4 1 Group 1