1. 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

  2. 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
    
  3. 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.