[Potato+Macro Buttons] Macro for reverb FX
[Potato+Macro Buttons] Macro for reverb FX
Hi, I'm trying to make a macro button that toggles reverb/delay, however I am unable to find the code to toggle special effects, since the documentation, to my knowledge, has not been released. If I wanted to do this, what would I throw into the button?
-
- Site Admin
- Posts: 2121
- Joined: Sun Jan 17, 2010 12:01 pm
Re: [Potato+Macro Buttons] Macro for reverb FX
for the moment the following new instructions are implemented:
Strip.Reverb 0 to 10 Send Level To Reverb
Strip.Delay 0 to 10 Send Level To Delay
Strip.Fx1 0 to 10 Send Level To External Fx1
Strip.Fx2 0 to 10 Send Level To External Fx2
Strip.PostReverb 0 (off) or 1 (on) Post Reverb button
Strip.PostDelay 0 (off) or 1 (on) Post Delay button
Strip.PostFx1 0 (off) or 1 (on) Post Fx1 button
Strip.PostFx2 0 (off) or 1 (on) Post Fx2 button
Bus.Sel 0 (off) or 1 (on) BUS SEL Button
Bus.ReturnReverb 0 to 10 Reverb return
Bus[i].ReturnDelay 0 to 10 Delay return
Bus[i].ReturnFx1 0 to 10 FX1 return
Bus[i].ReturnFx2 0 to 10 FX2 return
Strip.Reverb 0 to 10 Send Level To Reverb
Strip.Delay 0 to 10 Send Level To Delay
Strip.Fx1 0 to 10 Send Level To External Fx1
Strip.Fx2 0 to 10 Send Level To External Fx2
Strip.PostReverb 0 (off) or 1 (on) Post Reverb button
Strip.PostDelay 0 (off) or 1 (on) Post Delay button
Strip.PostFx1 0 (off) or 1 (on) Post Fx1 button
Strip.PostFx2 0 (off) or 1 (on) Post Fx2 button
Bus.Sel 0 (off) or 1 (on) BUS SEL Button
Bus.ReturnReverb 0 to 10 Reverb return
Bus[i].ReturnDelay 0 to 10 Delay return
Bus[i].ReturnFx1 0 to 10 FX1 return
Bus[i].ReturnFx2 0 to 10 FX2 return
Re: [Potato+Macro Buttons] Macro for reverb FX
I'm not very familiar with creating macros but let's say I want this scenario
I want to add reverb to my microphone, and I want it to be heard in my headset (bus A2) and on Voicemeeter Output Aux (bus B2)
I want to have it as toggle, so I have to click the button a second time to disable it.
how do I set this up in Macros??
-- edit --
how does Post reverb work compared to Reverb?
I want to add reverb to my microphone, and I want it to be heard in my headset (bus A2) and on Voicemeeter Output Aux (bus B2)
I want to have it as toggle, so I have to click the button a second time to disable it.
how do I set this up in Macros??
-- edit --
how does Post reverb work compared to Reverb?
-
- Site Admin
- Posts: 2121
- Joined: Sun Jan 17, 2010 12:01 pm
Re: [Potato+Macro Buttons] Macro for reverb FX
simply by using these following instructions
Strip[0].Reverb = 10; //add reverb to your MIC in hardware input #1
Bus[1].ReturnReverb = 10; //Heard in BUS A2
Bus[6].ReturnReverb = 10; //Heard in BUS B2 on Potato
Post Reverb SEND level is related to Strip Slider Level.
Strip[0].Reverb = 10; //add reverb to your MIC in hardware input #1
Bus[1].ReturnReverb = 10; //Heard in BUS A2
Bus[6].ReturnReverb = 10; //Heard in BUS B2 on Potato
Post Reverb SEND level is related to Strip Slider Level.