No internet connection
  1. Home
  2. Packages
  3. Dialog Editing iZotope

Izotope RX8 Loudness Control Render/Process

By Matt Lowe @Matt_Lowe
    2021-01-08 23:46:23.105Z

    I'm using RX8 and I use the Loudness Control but the Process commands that I've found and tried work for everything except Loudness Control. Anyone have a fix for this?

    • 1 replies
    1. Kitch Membery @Kitch2021-03-24 08:54:13.491Z

      Hi @Matt_lowe,

      I believe this package was created for iZotope RX7 so I'll let @chrscheuer know that there is an issue.

      Till there is an update to the package, you could create a command with the following script;

      let win = sf.ui.izotope.windows.whoseDocument.isNull.first;
      
      if (!win.exists)
          throw "There's no focused module";
      
      switch (win.title.invalidate().value) {
          case 'Resample':
              win.groups.first.groups.first.buttons.whoseDescription.is("Apply").first.elementClick();
              break
          case 'Loudness Control':
              win.groups.first.groups.first.groups.first.groups.allItems[1].buttons.whoseDescription.is("Apply").first.elementClick();
              break
          case 'Music Rebalance':
              win.groups.first.groups.first.groups.allItems[1].groups.allItems[1].buttons.whoseDescription.is("Apply").first.elementClick();
              break
          case 'Spectral Recovery':
              win.groups.first.groups.first.groups.first.groups.allItems[1].buttons.whoseDescription.is("Apply").first.elementClick();
              break
          default:
              win.groups.first.groups.first.groups.allItems[1].buttons.whoseDescription.is("Apply").first.elementClick();
      }
      

      This script should fix the "Render" button for the iZotope RX 8 Modules that are not working.

      I hope that helps.