Hello,
Here is a following set of instr, inst reverb and Echo are running for ever. and are receiving the audio signal from inst 1.
instr reverb
aIn chnget "reverSend"
aOut reverb ...
outs aOut,aOut
chnclear "reverSend"
endin
instr Echo
aIn chnget "EchoSend"
aOut reverb ...
outs aOut,aOut
chnclear "EchoSend"
endin
Instr 1
.....
chnmix aOut,"EchoSend"
chnmix aOut, "reverbSend"
outs aOut, aOut
endin
I would like to send the output of the instr Echo to the instrument reverb, I should I do ?
Thank you for help.