Macro or Command to hide all UI elements except for some frames

I want to hide all UI elements except for the talent pane, tooltip and another. Does anyone know if this is possible? i just want it to hide the UI while looking at an interface panel. Can this be done through some sort of macro?

Use /fstack to find out the names of the frames you want to hide.
To hide frames (e.g. PlayerFrame and MinimapCluster) with a macro would write:
/run PlayerFrame:Hide() MinimapCluster:Hide()
To bring them up again:
/run PlayerFrame:Show() MinimapCluster:Show()

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.