View Single Post
07/20/15, 05:44 AM   #3
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 5,007
Get the label control by help of
local labelCtrl = WINDOW_MANAGER:GetControlByName("name here", "")
if labelCtrl ~= nil then
labelCtrl:SetColor(r, g, b, a)
end

Or just use the name of the label control if you know it already
ZOS_GameMenuLabel1:SetColor(r, g, b, a)
  Reply With Quote