[Potato+Macro Buttons] Macro for reverb FX

The Virtual Audio Mixer discussions and support...
Post Reply
W01Fi3
Posts: 3
Joined: Fri Mar 29, 2019 7:41 am

[Potato+Macro Buttons] Macro for reverb FX

Post by W01Fi3 »

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?
Vincent Burel
Site Admin
Posts: 2020
Joined: Sun Jan 17, 2010 12:01 pm

Re: [Potato+Macro Buttons] Macro for reverb FX

Post by Vincent Burel »

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
mrgusse
Posts: 6
Joined: Tue Jan 08, 2019 8:42 am
Contact:

Re: [Potato+Macro Buttons] Macro for reverb FX

Post by mrgusse »

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?
Vincent Burel
Site Admin
Posts: 2020
Joined: Sun Jan 17, 2010 12:01 pm

Re: [Potato+Macro Buttons] Macro for reverb FX

Post by Vincent Burel »

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.
Post Reply