Home › Forums › Macros › Looper state function › Reply To: Looper state function
14 May 2021 at 21 h 17 min
#5097
Philippe
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