No internet connection
  1. Home
  2. Macro and Script Help

input mode menu cant be found in Audio Suite window

By Nacho @Nacho_Sotelo
    2023-08-03 18:31:45.799Z

    Title

    input mode menu cant be found in Audio Suite window

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

    Line 12 cant find the menu to select multi-input mode

    Are you seeing an error?

    03.08.2023 13:29:42.41 [Backend]: !! Command Error: RX Connect Send [user:ck8kw0893000mlh10m5qhu0ps:ckitgv6sh00001110uifhxu2x]: Could not open popup menu (RX Connect Send: Line 12) Popup menu was not found Popup window was not found after waiting 2000 ms

    What happens when you run this script?

    after opening Audio Suite window, soundflow cant find the specified menu to select multi-input mode

    How were you running this script?

    I used a Stream Deck button

    How important is this issue to you?

    4

    Details

    {
        "inputExpected": "Line 12 cant find the menu to select multi-input mode",
        "inputIsError": true,
        "inputError": "03.08.2023 13:29:42.41  [Backend]: !! Command Error: RX Connect Send [user:ck8kw0893000mlh10m5qhu0ps:ckitgv6sh00001110uifhxu2x]:\nCould not open popup menu (RX Connect Send: Line 12)\n    Popup menu was not found\n    Popup window was not found after waiting 2000 ms\n",
        "inputWhatHappens": "after opening Audio Suite window, soundflow cant find the specified menu to select multi-input mode",
        "inputHowRun": {
            "key": "-MpfwmPg-2Sb-HxHQAff",
            "title": "I used a Stream Deck button"
        },
        "inputImportance": 4,
        "inputTitle": "input mode menu cant be found in Audio Suite window"
    }

    Source

    //Check if AS window is already open
    var asWin = sf.ui.proTools.getAudioSuiteWindow("RX 10 Connect");
    if (asWin && asWin.exists) {
        //audio suite window is open
    
            //Bring to front
    sf.ui.proTools.windows.whoseTitle.is('Audio Suite: RX 10 Connect').first.elementRaise();
            
            //Change to Clip by Clip
    asWin.audioSuiteSetOptions({ processingInputMode: 'EntireSelection', processingOutputMode: 'CreateIndividualFiles' });     
    
    sf.ui.proTools.firstAudioSuiteWindow.popupButtons.first.popupMenuSelect({
        menuPath: ["multi-input mode"],
    });
    
            //Click "Send"
    asWin.getFirstWithTitle("Analyze").elementClick(); 
                             
    
     } else {
        //audio suite window is NOT open
     
        //Open RX 10 Connect
    var asWin = sf.ui.proTools.audioSuiteOpenPlugin({
        category: 'Noise Reduction',
        name: "RX 10 Connect"
    }).window;
    
            //Change to Clip by Clip
    asWin.audioSuiteSetOptions({ processingInputMode: 'EntireSelection', processingOutputMode: 'CreateIndividualFiles' });  
    
    sf.ui.proTools.firstAudioSuiteWindow.popupButtons.first.popupMenuSelect({
        menuPath: ["multi-input mode"],
    });
    
            //Click "Send"
    asWin.getFirstWithTitle("Analyze").elementClick(); 
    
    sf.ui.proTools.firstAudioSuiteWindow.popupButtons.first
    
    
     
     }
    
    

    Links

    User UID: DHDnZWdpvKemqgJbKRnLwKuVEx52

    Feedback Key: sffeedback:DHDnZWdpvKemqgJbKRnLwKuVEx52:-NawesXSD-O4XaoAHwwK

    Feedback ZIP

    • 0 replies