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

RX 11- send back to pro-tools is buggy

By Jose O. Perez @Jose_O_Perez
    2025-03-16 22:44:15.684Z

    Title

    RX 11- send back to pro-tools is buggy

    What do you expect to happen when you run the script/macro?

    After processing in RX11 the script is supposed to send the audio back to protools and render the changes to the timeline.

    Are you seeing an error?

    It places the processed audio in the wrong spot either vertically on a different track and now sometimes horizontally on the right track, but at the wrong place in the timeline.

    What happens when you run this script?

    when I push "send back" to protools it randomly sends the audio back to the wrong place on the protools timeline.

    How were you running this script?

    I used a Stream Deck button

    How important is this issue to you?

    5

    Details

    {
        "inputExpected": "After processing in RX11 the script is supposed to send the audio back to protools and render the changes to the timeline. ",
        "inputIsError": true,
        "inputError": "It places the processed audio in the wrong spot either vertically on a different track and now sometimes horizontally on the right track, but at the wrong place in the timeline. ",
        "inputWhatHappens": "when I push \"send back\" to protools it randomly sends the audio back to the wrong place on the protools timeline. ",
        "inputHowRun": {
            "key": "-MpfwmPg-2Sb-HxHQAff",
            "title": "I used a Stream Deck button"
        },
        "inputImportance": 5,
        "inputTitle": "RX 11- send back to pro-tools is buggy"
    }

    Source

    
    var shuttleBtn = sf.ui.izotope.mainWindow.children.whoseDescription.endsWith('Main Window').first.children.whoseDescription.is("Shuttle").first;
    if (!shuttleBtn.exists)
        shuttleBtn = sf.ui.izotope.mainWindow.children.whoseDescription.is("Shuttle").first;
    shuttleBtn.elementClick({}, "Could not click Send Back button");
    
    sf.wait({ intervalMs: 500 });
    
    sf.ui.proTools.appActivateMainWindow({}, "Could not activate Pro Tools");
    
    var win = sf.ui.proTools.floatingWindows.filter(function(w){ var t = w.title.value; return t.indexOf("Audio Suite: RX") == 0 && t.indexOf("Connect") >= 0 })[0];
    if (!win || !win.exists) throw "Could not find iZotope RX Connect AudioSuite window";
    
    win.buttons.whoseTitle.is("Render").first.elementClick({}, "Could not click Render");
    
    /* Uncomment to close when done
    sf.wait({ intervalMs: 100 });
    sf.ui.proTools.waitForNoModals();
    win.windowClose();
    */
    

    Links

    User UID: gz2pvRJ68MQQ50Ibcg2G81BovQg2

    Feedback Key: sffeedback:gz2pvRJ68MQQ50Ibcg2G81BovQg2:-OLW7GWiqODPXZjkavit

    Feedback ZIP: FgmHeD9p/+dfv1BWDKCueJVAdtyexnHYPyHGA26kjRG/4QrioaiNGLSv64MmV3Ebhv8Lh3/sltbY+yFnt0b1X5u4A7qqQ3neRrR211734pM9BI1baLextlCHJxIg4pr037Q4GOeNXTNL9dSjur/UXnquI7ql0Kx/l+h31c4GSN6BRscdM1qLq+LF7Dpx3uftVlZ4SmyYKZwnQ4POv4xUtQAVFJRgxASxDr/ufBHc5xhhU1hlTPme4ont5zzkxkJFHUsLfuGseVg2RL5IhWxm2rpjU8I+PKA1CpxnO1yhV0Saq9vX2EJA78T38Pq6r2KZzmulr++rhFmaQvJOzUJIwA==

    • 0 replies