View Single Post
08-19-08, 01:59 PM   #3
Vranx
A Flamescale Wyrmkin
 
Vranx's Avatar
Join Date: May 2008
Posts: 101
Using the latest version of PRaid I have managed to get the name over the bar with the following changes:
Code:
Line 557
from - 	button:SetAttribute("initial-width", 225)
to - 	button:SetAttribute("initial-width", 170)

Line 632
from - button.leftbox:SetPoint("BOTTOMRIGHT", button, "BOTTOMLEFT", 70, 0)
to -   button.leftbox:SetPoint("BOTTOMRIGHT", button, "BOTTOMLEFT", 1, 0)

Lines 665-667
from - 
button.name:SetPoint("RIGHT", button.leftbox, "RIGHT", -2, 0)
button.name:SetPoint("LEFT", button.leftbox, "LEFT", 0, 0)
button.name:SetJustifyH("RIGHT")
to - 
button.name:SetPoint("LEFT", button.healthbar, "LEFT", 2, 1)
button.name:SetPoint("RIGHT", button.healthbar, "RIGHT", 0, 0)
button.name:SetJustifyH("LEFT")
Now I have class colored names over a class colored bar. How can I change the name color to white?
  Reply With Quote