Audiosuite D-Verb, render using Reverse button?
Hey peeps!
So, I want to make a button on my streamdeck to simply use the D-Verb audiosuite, but to render using the "Reverse" button, instead of the usual "Render" one... there are scripts for Audiosuite render with presets, but not for alternative render buttons like this.... how?
- samuel henriques @samuel_henriques
Hello Nathan,
try this:
const userPlugInCategory = "Reverb" const userPlugInName = "D-Verb" const inputMode = "EntireSelection" const outputMode = "CreateContinuousFile" let preset = "" const openedAudioSuiteWin = sf.ui.proTools.getAudioSuiteWindow(userPlugInName) if (openedAudioSuiteWin.exists) { openedAudioSuiteWin.buttons.whoseTitle.is("Analyze").first.elementClick(); } else { let newAudioSuiteWin = sf.ui.proTools.audioSuiteOpenPlugin({ category: userPlugInCategory, name: userPlugInName, }).window newAudioSuiteWin.audioSuiteSetOptions({ processingInputMode: inputMode, processingOutputMode: outputMode }) if (preset) { if (newAudioSuiteWin.presetButton.value.invalidate().value != preset.slice(-1)[0]) { newAudioSuiteWin.presetButton.popupMenuSelect({ menuPath: [preset] }) }; }; newAudioSuiteWin.buttons.whoseTitle.is("Analyze").first.elementClick(); }
- NNathan Judd @Nathan_Judd
Hey Samuel,
That seems to have done the trick, will add a close window command after.Thank you so much and have a great day!
- DDamien Lewis @Damien_Lewis
how is this working for you? this is exactly what I've been looking for but I'd actually rather do it with a key command. I'm such a soundflow noob I dont even know where to begin to add this script. any help would be appreciated!
Damiensamuel henriques @samuel_henriques
Hello Damien,
To add a keyboard trigger to your script or macro:
Click "New Trigger"
Then Choose "Keyboard Trigger"
Choose the App you the trigger to work ( not choosing will work with any app)Click record and type the trigger you want.
hope this helps