-
Posted by xenon11 on Tue, 21 Aug 2012 07:05:57
hi guys, i'm trying to change the color of the chat tab text. here is my code, tell me what you think about it, and, if you find, some errors. (myresult is only one tabtext colored, the others are still yellow)
for i = 1, NUMCHATWINDOWS do
--color chat frame tab text
_G["ChatFrame"..i.."TabText"]:SetTextColor(0/255, 170/255, 255/255) end
-
Posted by Myrroddin on Tue, 21 Aug 2012 13:37:50
hi guys, i'm trying to change the color of the chat tab text. here is my code, tell me what you think about it, and, if you find, some errors. (myresult is only one tabtext colored, the others are still yellow)
for i = 1, NUMCHATWINDOWS do
--color chat frame tab text
_G["ChatFrame"..i.."TabText"]:SetTextColor(0/255, 170/255, 255/255) end
for i = 1, NUM_CHAT_WINDOWS do -- colour chat frame tab text _G["ChatFrame"..i.."TabText"]:SetTextColor(0, 170, 255) -- you don't need the divisors end
-
Posted by Myrroddin on Tue, 21 Aug 2012 13:40:20
I also would not be surprised if the numbers are actually 0, 0.6, 1, and not 0, 170, 255, but I'd have to test it to make sure.