Home Forums Macros Looper state function Reply To: Looper state function

#5097
Philippe OllivierPhilippe
Keymaster

Hi Daniel,
To know the state of almost everything in Logelloop.
You will use the variables.
Every variable is in the “Macro Variable Viewer” you open in the tools menu.

Then, if you want to know the state of a record, you can put Record in the filter and you will see $state_record$ in the list.
$state_record$ will be true when the main looper is recording.

So the macro is :

DoRepeat

If {$state_record$ == true}
Message “Recording in action”
EndIf

If {$state_overdub$ == true}
Message “Overdub in action”
EndIf

Sleep 100

While true