Does anyone know of a mod that fully fades the chat window…makes window disappear, not just the words?
I want to see more of the game world when chat window is not active.
Thanks
Does anyone know of a mod that fully fades the chat window…makes window disappear, not just the words?
I want to see more of the game world when chat window is not active.
Thanks
Adjust the alpha of the chat background to transparent.
That makes it harder for me to read the words…makes contrast lower.
But thank you for the recommendation.
To more further clarify, I’d like to keep the background black, but fade the chat window.
A roundabout but really easy way to see more of the game world is to use a viewport addon like SunnArt and put the chat box outside the area covered by the 3D world. You don’t lose any vertical viewable space and you actually gain horizontal, increasing your FOV, and making aspects of the battlefield easier to see.
I think this macro should hide the chat box, there’s probably an easy way to make a small addon that does this automatically after like 5 seconds of message posting.
/run _CHATHIDE=not _CHATHIDE for i=1,NUM_CHAT_WINDOWS do for _,v in pairs{“”,“Tab”}do local f=_G[“ChatFrame”…i…v]if _CHATHIDE then f.v=f:IsVisible()end f.ORShow=f.ORShow or f.Show f.Show=_CHATHIDE and f.Hide or f.ORShow if f.v then f:Show()end end end