I just dont want the party frame there so my healbot/etc can take its place.
I know Ikarus will do it, but it has so many settings to get right. I just want something that will let you hide the party frame quickly and nothing else. Is there something i am missing in game? or is there a simple addon that will just hide the party frame. It doesnt have to hide the player frame, but i dont care if it does.
Here's a quicky macro that might do the trick (untested)
|
Source code
|
1
|
/run for i=1,5 do local f=_G['UnitFrame_party'..i] if f:IsVisible() then f:Hide() end end
|
It'll only hide party frames that are currently visible, so it is safe to run it at any time.