Home Forums Macros AudioEngine start/stop by macro Reply To: AudioEngine start/stop by macro

#7165
Philippe OllivierPhilippe
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