So, I got rid of Minimalist because I only used a few functions from it. Instead, I wrote a bit of code to get Chat Scrolling, Disable Fade, and Justify the chat. But there is one thing I am missing; The chat buttons being hidden. I wrote a bit of code(very simple stuff) to hide them, but it only hides them after a /reload ui. I made a macro, but it resets everytime my UI is reloaded as well. So I am trying to get it to hide the chat buttons without a /reload and without a macro. Here is the code I have for hiding them:
for i = 1, 7 do
ChatFrameMenuButton:Hide()
getglobal('ChatFrame'..i..'UpButton'):Hide()
getglobal('ChatFrame'..i..'DownButton'):Hide()
getglobal('ChatFrame'..i..'BottomButton'):Hide()
end
So, how would I make it hide the chat buttons without a reload ui when I first log in? Thanks.
I had a guildie help me a little with watching for events or something, but it didn't work. I also looked at a few mods code, but couldn't figure it out.
So, how would I make it hide the chat buttons without a reload ui when I first log in? Thanks.
I had a guildie help me a little with watching for events or something, but it didn't work. I also looked at a few mods code, but couldn't figure it out.
I was looking at id_Chat2Buttons as a reference, didn't see that.