Home Forums Logelloop (English spoken) Control loop slicing window using midi controller Reply To: Control loop slicing window using midi controller

#4965
Gwenole PeaudecerfGwenole
Member

//This macro will recall a specific part of a loop via midi
//by presing a midi note controller routed on the Macro Midi Variables
//You’ll just have to :
//- adress your midi keyboard to the midiv_ntv1, 2,3,… in
// the project configuration menu > Midi > Variables for //macro
// Set in the macro below the TrackLoopBeginAt and TrackLoopEndAt value, which means the beginning and the end
// of the specific part you wanna recall.
//You can duplicate this macro and assign other midi notes by changing
//in the macro below the values of the $midiv_ntv $ value

DoRepeat

If {$midiv_ntv1$ > 0}

TrackLoopBeginAt trk1 0

TrackLoopEndAt trk1 20000

EndIf

Sleep 100

While true