Home › Forums › Macros › AudioEngine start/stop by macro › Reply To: AudioEngine start/stop by macro
11 February 2025 at 13 h 10 min
#7165

Keymaster
Hi,
There is no macro command to do this by you can use osc internal messages as a workaround :
OSCSendMessage 0 "/audio_on 1"
WaitUserAction
OSCSendMessage 0 "/audio_on 0"
Note that when you stop the audio engine, all the macro are stopped, so you can can’t put the “OSCSendMessage 0 “/audio_on 1” line after the WaitUserAction…
Philippe