I have a few REs that are used across my whole app. Each RE gets a conditional for each view to update the content it displays and save me creating a new element for each view.
Essentially they are IF() statements that read the URL and display content I pass through, like so:
My list of conditionals is now longer than my monitor can display, and scrolling it down just means the edit window appears off screen at the top!
How do you guys manage this? I’d hate to create more elements just because of a UI issue.