Originally Posted by Irox
Evening, I just spent some time redesigning my UI, the most significant change I made was moving the chat frames from the bottom to the top of my screen. Thanks to those annoying chat tabs though it won't let me move the frames closely enough to the top edge, they keep sliding back to make room for the tabs whenever I try to move them any further.
"Forceful" attempts to place them as desired reset after relogging, any ideas how to get this working?
Cheers,
Irox
|
Make your own add-on and use this as the code:
SlashCmdList["CHATPOSITION"] = function()
ChatFrame1:ClearAllPoints()
ChatFrame1:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", 6, 7)
ChatFrame1:SetWidth(475)
ChatFrame1:SetHeight(125)
ChatFrame1:SetUserPlaced(true)
end
SLASH_CHATPOSITION1 = "/chatpos"
And just tweak the co-ordinates to where you want your chat to be, then just type /chatpos to move your chat.