View Single Post
12-02-13, 05:33 PM   #7
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
For #1 you want to search for lines that look like one of these:
  • local xxx = yyy:CreateFontString(nil, "OVERLAY", "GameFontNormal")
  • xxx:SetFontObject("GameFontNormal")
  • xxx:SetFont("Path\\To\\Font.ttf", 14, "OUTLINE")

Yellow = what you want to search for
Blue = what you want to change

With "SetFont" lines you just change the values passed to the function. With "SetFontObject" lines (or "CreateFontString" lines that pass a font object) it's probably easiest just to add a "SetFont" line after it; you can preserve some ofthe original properties if you want, too.

Code:
local originalFont, originalSize, originalOutline = xxx:GetFont()
xxx:SetFont(originalFont, 18, "OUTLINE") -- original font, different size and outline style
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote