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

- Daniel Perez @daniel_perez
@chadwahlbrink (←soundflow hero)
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.Daniel Perez @daniel_perez
you are right. i'll automate the press no button with a shortcut instead.
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();
Daniel Perez @daniel_perez
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();