No internet connection
  1. Home
  2. How to

rx 10 editor supress all warnings on send to rx

By Daniel Perez @daniel_perez
    2023-08-17 14:38:22.400Z

    can i supress all warnings in rx 10 editor? not only "last ... not safed", but also "selection to small for de crackle..." for example.

    Solved in post #5, click to view
    • 6 replies
    1. Daniel Perez @daniel_perez
        2023-08-17 14:39:12.260Z

        @chadwahlbrink (←soundflow hero)

        1. Chad Wahlbrink @Chad2023-08-17 17:09:34.747Z

          @daniel_perez - to be clear, do you want SoundFlow to always dismiss any dialog warnings from RX?

          This sounds like it would require a "run forever" script or a SoundFlow Developer to write an app specifically for this function. If you'd like to see an app like this, feel free to request them in the ideas section of the forum.

          For examples of "runForever" scripts, you can see the following posts:
          Select Track as trigger #post-7
          Trigger a switch Deck command via window close #post-6

          I typically avoid workflows like this as dismissing all warnings can get to be dangerous or require extensive case-specific scripting.

          1. Daniel Perez @daniel_perez
              2023-08-17 17:13:09.266Z

              you are right. i'll automate the press no button with a shortcut instead.

              1. Chad Wahlbrink @Chad2023-08-17 17:18:56.628Z

                For that specific purpose, this will work:

                sf.ui.izotope.windows.whoseRole.is('AXWindow').first.children.whoseTitle.is('No').first.elementClick();
                
                Reply1 LikeSolution
                1. Daniel Perez @daniel_perez
                    2023-08-17 17:20:02.802Z

                    thank you. just did with a macro.

                  • In reply todaniel_perez:
                    Chad Wahlbrink @Chad2023-08-17 17:20:22.119Z

                    Similarly, to press "Yes" on a "Selection is too small" warning, you can use this:

                    sf.ui.izotope.windows.whoseRole.is('AXWindow').first.children.whoseTitle.is('Yes').first.elementClick();